Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 24 additions & 120 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ futures = { version = "0.3.30", default-features = false }
generic-array = "1.3.3"
governor = { version = "0.8.1", default-features = false }
hashlink = "0.10.0"
heed = "0.21.0"
heed = "0.22.0"
hex = "0.4.3"
hex-literal = "0.4.1"
human-size = "0.4.3"
Expand Down Expand Up @@ -66,8 +66,8 @@ serde_json_canonicalizer = "0.3.0"
serde_with = { version = "3.4.0", default-features = false }
shlex = "1.3.0"
smallvec = "1.13.2"
sneed = "0.0.19"
strum = { version = "0.27.2", default-features = false }
sneed = "0.0.22"
strum = { version = "0.28.0", default-features = false }
thiserror = "2.0.16"
tiny-bip39 = "2.0.0"
tokio = { version = "1.50.0", default-features = false }
Expand All @@ -90,7 +90,7 @@ url = "2.5.4"
utoipa = { version = "5.2.0", default-features = false }
uuid = "1.13.1"
x25519-dalek = "2.0.0"
zeromq = "0.5.0"
zeromq = "0.6.0"

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

[profile.release]
# lto = "fat"
# lto = "fat"
8 changes: 5 additions & 3 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,13 @@ ignore = [
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
#"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish
#{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" },
{ id = "RUSTSEC-2024-0370", reason = "Temporary ignore until the ouroboros branch gets updated"},
{ id = "RUSTSEC-2024-0370", reason = "Temporary ignore until the ouroboros branch gets updated" },
# paste (via aws-lc-rs) is unmaintained
# https://github.com/aws/aws-lc-rs/issues/722
{ id = "RUSTSEC-2024-0436", reason = "Temporary ignore until aws-lc-rs and rustls-webpki get updated"},
{ id = "RUSTSEC-2025-0141", reason = "Temporary ignore until heed migrates to wincode"},
{ id = "RUSTSEC-2024-0436", reason = "Temporary ignore until aws-lc-rs and rustls-webpki get updated" },
{ id = "RUSTSEC-2025-0141", reason = "Temporary ignore until heed migrates to wincode" },
# ttf-parser (via egui) is unmaintained
{ id = "RUSTSEC-2026-0192", reason = "Temporary ignore until ttf-parser is replaced by skrifa etc." },
]
# If this is true, then cargo deny will use the git executable to fetch advisory database.
# If this is false, then it uses a built-in git library.
Expand Down
5 changes: 4 additions & 1 deletion lib/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ pub struct Archive {
impl Archive {
pub const NUM_DBS: u32 = 14;

pub fn new(env: &sneed::Env) -> Result<Self, Error> {
pub fn new<Tls>(env: &sneed::Env<Tls>) -> Result<Self, Error>
where
Tls: heed::TlsUsage,
{
let mut rwtxn = env.write_txn()?;
let version =
DatabaseUnique::create(env, &mut rwtxn, "archive_version")?;
Expand Down
5 changes: 4 additions & 1 deletion lib/mempool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ pub struct MemPool {
impl MemPool {
pub const NUM_DBS: u32 = 3;

pub fn new(env: &sneed::Env) -> Result<Self, Error> {
pub fn new<Tls>(env: &sneed::Env<Tls>) -> Result<Self, Error>
where
Tls: heed::TlsUsage,
{
let mut rwtxn = env.write_txn()?;
let transactions =
DatabaseUnique::create(env, &mut rwtxn, "transactions")?;
Expand Down
Loading
Loading