This repository was archived by the owner on Jan 6, 2025. It is now read-only.
File tree 2 files changed +4
-11
lines changed
2 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 11
11
include :
12
12
- toolchain : stable
13
13
check-fmt : true
14
- - toolchain : 1.48 .0
14
+ - toolchain : 1.63 .0
15
15
platform : ubuntu-latest
16
16
msrv : true
17
17
28
28
- name : Pin crates for MSRV
29
29
if : matrix.msrv
30
30
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
39
32
- name : Cargo check
40
33
run : cargo check --release
41
34
- name : Check documentation
Original file line number Diff line number Diff line change 11
11
//! # `lightning-liquidity`
12
12
//! Types and primitives to integrate a spec-compliant LSP with an LDK-based node.
13
13
#![ 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) ]
16
16
#![ allow( bare_trait_objects) ]
17
17
#![ allow( ellipsis_inclusive_range_patterns) ]
18
18
#![ allow( clippy:: drop_non_drop) ]
You can’t perform that action at this time.
0 commit comments