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
8 changes: 0 additions & 8 deletions dash-spv-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,20 @@ crate-type = ["cdylib", "staticlib", "rlib"]
[dependencies]
dash-spv = { path = "../dash-spv" }
dashcore = { path = "../dash", package = "dashcore" }
libc = "0.2"
once_cell = "1.19"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
hex = "0.4"
env_logger = "0.10"
tracing = "0.1"
# Use key-wallet-ffi for all wallet-related FFI types
key-wallet-ffi = { path = "../key-wallet-ffi" }
# Still need these for SPV client internals (not for FFI types)
key-wallet = { path = "../key-wallet" }
key-wallet-manager = { path = "../key-wallet-manager" }
rand = "0.8"
clap = { version = "4.5", features = ["derive"] }

[dev-dependencies]
dash-spv = { path = "../dash-spv", features = ["test-utils"] }
serial_test = "3.0"
env_logger = "0.10"
tempfile = "3.8"

[build-dependencies]
Expand Down
6 changes: 0 additions & 6 deletions dash-spv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ dashcore_hashes = { path = "../hashes" }
key-wallet = { path = "../key-wallet" }
key-wallet-manager = { path = "../key-wallet-manager", features = ["parallel-filters"] }

# BLS signatures
blsful = { git = "https://github.com/dashpay/agora-blsful", rev = "0c34a7a488a0bd1c9a9a2196e793b303ad35c900" }

# CLI
clap = { version = "4.0", features = ["derive", "env"] }

Expand All @@ -30,12 +27,10 @@ futures = "0.3"

# Error handling
thiserror = "1.0"
anyhow = "1.0"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "2.0.1"

# Logging
tracing = "0.1"
Expand All @@ -46,7 +41,6 @@ chrono = "0.4.20"
# Utilities
rand = "0.8"
hex = "0.4"
indexmap = "2.0"

# Parallelization
rayon = "1.11"
Expand Down
1 change: 0 additions & 1 deletion hashes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ internals = { path = "../internals", package = "dashcore-private" }
serde = { version = "1.0.219", default-features = false, optional = true }
# Do NOT use this as a feature! Use the `schemars` feature instead. Can only be used with "std" enabled.
actual-schemars = { package = "schemars", version = "1.0", optional = true }
secp256k1 = { default-features = false, features = ["hashes"], version= "0.30.0" }

rs-x11-hash = { version = "0.1.8", optional = true }
bincode = { version = "2.0.1", optional = true }
Expand Down
Loading