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

Commit 43102d9

Browse files
pin memchr to 2.5.0
1 parent 1d183c0 commit 43102d9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
cargo update -p quote --precise "1.0.30" --verbose
3636
# The proc-macro2 crate switched to Rust edition 2021 starting with v1.0.66, i.e., has MSRV of 1.56
3737
cargo update -p proc-macro2 --precise "1.0.65" --verbose
38+
# The memchr crate switched to Rust edition 2021 starting with v2.6.0
39+
cargo update -p memchr --precise "2.5.0" --verbose
3840
- name: Cargo check
3941
run: cargo check --release
4042
- name: Check documentation

Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@ authors = ["Elias Rohrer <[email protected]>"]
55
edition = "2018"
66
description = "Types and primitives to integrate a spec-compliant LSP with an LDK-based node."
77

8-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9-
108
[dependencies]
119
lightning = { version = "0.0.117", default-features = false, features = ["max_level_trace", "no-std", "grind_signatures"] }
1210
lightning-invoice = { version = "0.25.0", default-features = false, features = ["no-std"] }
13-
1411
bitcoin = { version = "0.29.2", default-features = false, features = ["serde", "secp-recovery", "rand"] }
15-
1612
serde = { version = "^1.0", features = ["derive"] }
1713
serde_json = "1.0"

0 commit comments

Comments
 (0)