Skip to content

Commit 3a1b4fb

Browse files
committed
Update deny.toml, deps
1 parent 6e61946 commit 3a1b4fb

13 files changed

Lines changed: 72 additions & 154 deletions

File tree

Cargo.lock

Lines changed: 24 additions & 120 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ futures = { version = "0.3.30", default-features = false }
3535
generic-array = "1.3.3"
3636
governor = { version = "0.8.1", default-features = false }
3737
hashlink = "0.10.0"
38-
heed = "0.21.0"
38+
heed = "0.22.0"
3939
hex = "0.4.3"
4040
hex-literal = "0.4.1"
4141
human-size = "0.4.3"
@@ -66,8 +66,8 @@ serde_json_canonicalizer = "0.3.0"
6666
serde_with = { version = "3.4.0", default-features = false }
6767
shlex = "1.3.0"
6868
smallvec = "1.13.2"
69-
sneed = "0.0.19"
70-
strum = { version = "0.27.2", default-features = false }
69+
sneed = "0.0.22"
70+
strum = { version = "0.28.0", default-features = false }
7171
thiserror = "2.0.16"
7272
tiny-bip39 = "2.0.0"
7373
tokio = { version = "1.50.0", default-features = false }
@@ -90,7 +90,7 @@ url = "2.5.4"
9090
utoipa = { version = "5.2.0", default-features = false }
9191
uuid = "1.13.1"
9292
x25519-dalek = "2.0.0"
93-
zeromq = "0.5.0"
93+
zeromq = "0.6.0"
9494

9595
[workspace.dependencies.bip300301_enforcer_lib]
9696
default-features = false
@@ -130,4 +130,4 @@ git = "https://github.com/torkelrogstad/tokio-tracing.git"
130130
branch = "log-rotation-size"
131131

132132
[profile.release]
133-
# lto = "fat"
133+
# lto = "fat"

deny.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,13 @@ ignore = [
7474
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
7575
#"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish
7676
#{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" },
77-
{ id = "RUSTSEC-2024-0370", reason = "Temporary ignore until the ouroboros branch gets updated"},
77+
{ id = "RUSTSEC-2024-0370", reason = "Temporary ignore until the ouroboros branch gets updated" },
7878
# paste (via aws-lc-rs) is unmaintained
7979
# https://github.com/aws/aws-lc-rs/issues/722
80-
{ id = "RUSTSEC-2024-0436", reason = "Temporary ignore until aws-lc-rs and rustls-webpki get updated"},
81-
{ id = "RUSTSEC-2025-0141", reason = "Temporary ignore until heed migrates to wincode"},
80+
{ id = "RUSTSEC-2024-0436", reason = "Temporary ignore until aws-lc-rs and rustls-webpki get updated" },
81+
{ id = "RUSTSEC-2025-0141", reason = "Temporary ignore until heed migrates to wincode" },
82+
# ttf-parser (via egui) is unmaintained
83+
{ id = "RUSTSEC-2026-0192", reason = "Temporary ignore until ttf-parser is replaced by skrifa etc." },
8284
]
8385
# If this is true, then cargo deny will use the git executable to fetch advisory database.
8486
# If this is false, then it uses a built-in git library.

lib/archive.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,10 @@ pub struct Archive {
160160
impl Archive {
161161
pub const NUM_DBS: u32 = 14;
162162

163-
pub fn new(env: &sneed::Env) -> Result<Self, Error> {
163+
pub fn new<Tls>(env: &sneed::Env<Tls>) -> Result<Self, Error>
164+
where
165+
Tls: heed::TlsUsage,
166+
{
164167
let mut rwtxn = env.write_txn()?;
165168
let version =
166169
DatabaseUnique::create(env, &mut rwtxn, "archive_version")?;

lib/mempool.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ pub struct MemPool {
5353
impl MemPool {
5454
pub const NUM_DBS: u32 = 3;
5555

56-
pub fn new(env: &sneed::Env) -> Result<Self, Error> {
56+
pub fn new<Tls>(env: &sneed::Env<Tls>) -> Result<Self, Error>
57+
where
58+
Tls: heed::TlsUsage,
59+
{
5760
let mut rwtxn = env.write_txn()?;
5861
let transactions =
5962
DatabaseUnique::create(env, &mut rwtxn, "transactions")?;

0 commit comments

Comments
 (0)