Clean and update dependencies (#726)

This commit is contained in:
Daniel Granhão
2025-02-07 13:59:00 +00:00
committed by GitHub
parent 30b21dad3c
commit c52acd5ae7
5 changed files with 892 additions and 766 deletions

570
cli/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,7 +12,7 @@ breez-sdk-liquid = { path = "../lib/core" }
clap = { version = "4.5.1", features = ["derive"] }
log = "0.4.20"
qrcode-rs = { version = "0.1", default-features = false }
rustyline = { version = "13.0.0", features = ["derive"] }
rustyline = { version = "15.0.0", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
tokio = { version = "1", features = ["macros"] }

1063
lib/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -18,15 +18,14 @@ workspace = true
anyhow = { workspace = true }
breez-sdk-liquid = { path = "../core" }
log = { workspace = true }
uniffi = { workspace = true, features = [ "bindgen-tests", "cli" ] }
uniffi = { workspace = true, features = ["bindgen-tests", "cli"] }
# Bindgen used by KMP, version has to match the one supported by KMP
uniffi_bindgen = "0.25.2"
uniffi_bindgen_kotlin_multiplatform = { git = "https://gitlab.com/trixnity/uniffi-kotlin-multiplatform-bindings", rev = "e8e3a88df5b657787c1198425c16008232b26548" }
camino = "1.1.1"
thiserror = { workspace = true }
tokio = { version = "1", features = ["rt"] }
once_cell = { workspace = true }
[build-dependencies]
uniffi = { workspace = true, features = [ "build" ] }
glob = "0.3.1"
uniffi = { workspace = true, features = ["build"] }
glob = "0.3.1"

View File

@@ -16,7 +16,7 @@ workspace = true
[dependencies]
anyhow = { workspace = true }
bip39 = "2.0.0"
bip39 = "2.1.0"
boltz-client = { git = "https://github.com/hydra-yse/boltz-rust", rev = "5c2a7aebd1669d599d76e782952b876a901bfb05" }
chrono = "0.4"
derivative = "2.2.0"
@@ -28,14 +28,13 @@ log = { workspace = true }
lwk_common = "0.8.0"
lwk_signer = "0.8.0"
lwk_wollet = { git = "https://github.com/breez/lwk", branch = "breez-sdk-liquid-0.6.3" }
#lwk_wollet = "0.8.0"
rusqlite = { version = "0.31", features = ["backup", "bundled"] }
rusqlite_migration = "1.0"
rusqlite = { version = "0.32.1", features = ["backup", "bundled"] }
rusqlite_migration = "1.3"
sdk-common = { git = "https://github.com/breez/breez-sdk", rev = "5a20b38b4c3b574282e8d6e5a61750bb7f4bebed", features = ["liquid"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.116"
strum = "0.25"
strum_macros = "0.25"
strum = "0.26.3"
strum_macros = "0.26.4"
thiserror = { workspace = true }
tokio-tungstenite = { version = "0.21.0", features = ["native-tls-vendored"] }
openssl = { version = "0.10", features = ["vendored"] }
@@ -48,14 +47,12 @@ futures-util = { version = "0.3.28", default-features = false, features = [
] }
async-trait = "0.1.80"
hex = "0.4"
reqwest = { version = "=0.11.20", features = ["json"] }
electrum-client = { version = "0.21.0", default-features = false, features = [
"use-rustls-ring",
"proxy",
] }
zbase32 = "0.1.2"
x509-parser = { version = "0.16.0" }
tempfile = "3"
x509-parser = { version = "0.17.0" }
prost = "0.13.3"
ecies = { version = "0.2.7", default-features = false, features = ["pure"] }
semver = "1.0.23"
@@ -65,7 +62,6 @@ tonic = { version = "0.12.3", features = ["tls", "tls-webpki-roots"] }
[dev-dependencies]
paste = "1.0.15"
tempdir = "0.3.7"
uuid = { version = "1.8.0", features = ["v4"] }
[build-dependencies]
anyhow = { version = "1.0.79", features = ["backtrace"] }