Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit e00d917

Browse files
authored
Merge pull request #50 from tnull/2023-11-bump-msrv-to-1.63
2 parents 4493ef3 + daba903 commit e00d917

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.github/workflows/build.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
include:
1212
- toolchain: stable
1313
check-fmt: true
14-
- toolchain: 1.48.0
14+
- toolchain: 1.63.0
1515
platform: ubuntu-latest
1616
msrv: true
1717

@@ -28,14 +28,7 @@ jobs:
2828
- name: Pin crates for MSRV
2929
if: matrix.msrv
3030
run: |
31-
# The serde_json crate switched to Rust edition 2021 starting with v1.0.101, i.e., has MSRV of 1.56
32-
cargo update -p serde_json --precise "1.0.99" --verbose
33-
cargo update -p serde --precise "1.0.156" --verbose
34-
# The quote crate switched to Rust edition 2021 starting with v1.0.31, i.e., has MSRV of 1.56
35-
cargo update -p quote --precise "1.0.30" --verbose
36-
# The proc-macro2 crate switched to Rust edition 2021 starting with v1.0.66, i.e., has MSRV of 1.56
37-
cargo update -p proc-macro2 --precise "1.0.65" --verbose
38-
cargo update -p chrono --precise "0.4.24" --verbose
31+
# No need to pin currently
3932
- name: Cargo check
4033
run: cargo check --release
4134
- name: Check documentation

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lightning-liquidity"
33
version = "0.1.0"
44
authors = ["John Cantrell <[email protected]>", "Elias Rohrer <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Types and primitives to integrate a spec-compliant LSP with an LDK-based node."
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
//! # `lightning-liquidity`
1212
//! Types and primitives to integrate a spec-compliant LSP with an LDK-based node.
1313
#![deny(missing_docs)]
14-
#![deny(broken_intra_doc_links)]
15-
#![deny(private_intra_doc_links)]
14+
#![deny(rustdoc::broken_intra_doc_links)]
15+
#![deny(rustdoc::private_intra_doc_links)]
1616
#![allow(bare_trait_objects)]
1717
#![allow(ellipsis_inclusive_range_patterns)]
1818
#![allow(clippy::drop_non_drop)]

0 commit comments

Comments
 (0)