Skip to content

Commit bdf2b0d

Browse files
fix
1 parent e2ab7ce commit bdf2b0d

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

Cargo.lock

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

packages/rs-dpp/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ chrono = { version = "0.4.35", default-features = false, features = [
2323
] }
2424
chrono-tz = { version = "0.8", optional = true }
2525
ciborium = { version = "0.2.2", optional = true }
26-
dashcore = { path = "../../../rust-dashcore/dash", features = [
26+
dashcore = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219", features = [
2727
"std",
2828
"secp-recovery",
2929
"rand",
3030
"signer",
3131
"serde",
3232
], default-features = false }
33-
key-wallet = { path = "../../../rust-dashcore/key-wallet", optional = true }
34-
key-wallet-manager = { path = "../../../rust-dashcore/key-wallet-manager", optional = true }
35-
dash-spv = { path = "../../../rust-dashcore/dash-spv", optional = true }
36-
dashcore-rpc = { path = "../../../rust-dashcore/rpc-client", optional = true }
33+
key-wallet = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219", optional = true }
34+
key-wallet-manager = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219", optional = true }
35+
dash-spv = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219", optional = true }
36+
dashcore-rpc = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219", optional = true }
3737

3838
env_logger = { version = "0.11" }
3939
getrandom = { version = "0.2", features = ["js"] }

packages/rs-platform-wallet/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ description = "Platform wallet with identity management support"
1111
dpp = { path = "../rs-dpp" }
1212

1313
# Key wallet dependencies (from rust-dashcore)
14-
key-wallet = { path = "../../../rust-dashcore/key-wallet" }
15-
key-wallet-manager = { path = "../../../rust-dashcore/key-wallet-manager", optional = true }
14+
key-wallet = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219" }
15+
key-wallet-manager = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219", optional = true }
1616

1717
# Core dependencies
18-
dashcore = { path = "../../../rust-dashcore/dash" }
18+
dashcore = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219" }
1919

2020
# Standard dependencies
2121
serde = { version = "1.0", features = ["derive"] }

packages/rs-sdk-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ simple-signer = { path = "../simple-signer" }
1919

2020
[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
2121
# Core SDK integration (always included for unified SDK); relative to this crate
22-
dash-spv-ffi = { path = "../../../rust-dashcore/dash-spv-ffi", optional = true }
23-
dashcore = { path = "../../../rust-dashcore/dash" }
22+
dash-spv-ffi = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219", optional = true }
23+
dashcore = { git = "https://github.com/dashpay/rust-dashcore", rev = "befd0356bebfcd0d06d1028d8a03bfa4c78bd219" }
2424

2525
# FFI and serialization
2626
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)