Skip to content

Commit 900f9b4

Browse files
committed
Fix deps paths / format
1 parent 7bf590c commit 900f9b4

File tree

2 files changed

+35
-27
lines changed

2 files changed

+35
-27
lines changed

Cargo.toml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
members = ["packages/*", "contracts/*"]
2+
members = ["contracts/*"]
33
resolver = "2"
44

55
[workspace.package]
@@ -21,14 +21,19 @@ fix-lint = "./scripts/fix-lint.sh"
2121
integration = "./scripts/integration_test.sh"
2222

2323
[workspace.dependencies]
24+
babylon-apis = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
25+
babylon-bindings = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
26+
babylon-bindings-test = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
27+
babylon-bitcoin = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
28+
babylon-merkle = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
29+
babylon-proto = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
30+
btc-staking = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
31+
babylon-contract = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
32+
eots = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
33+
ics23-commitment = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
34+
test-utils = { git = "https://github.com/babylonlabs-io/babylon-contract", branch="f/test-utils-path" }
35+
2436
anybuf = { version = "0.5.0" }
25-
babylon-apis = { path = "./packages/apis" }
26-
babylon-proto = { path = "./packages/proto" }
27-
babylon-bitcoin = { path = "./packages/bitcoin" }
28-
babylon-btcstaking = { path = "./packages/btcstaking" }
29-
babylon-contract = { path = "./contracts/babylon" }
30-
eots = { path = "./packages/eots" }
31-
ics23-commitment = { path = "./packages/ics23_commitment" }
3237
anyhow = "1.0.82"
3338
bech32 = "0.9.1"
3439
bitcoin = "0.31.1"

contracts/op-finality-gadget/Cargo.toml

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -22,29 +22,32 @@ test = false
2222
library = []
2323

2424
[dependencies]
25-
babylon-apis = { path = "../../packages/apis" }
26-
babylon-merkle = { path = "../../packages/merkle" }
27-
babylon-bindings = { path = "../../packages/bindings" }
28-
babylon-bitcoin = { path = "../../packages/bitcoin" }
29-
babylon-proto = { path = "../../packages/proto" }
25+
anybuf = { workspace = true }
26+
hex = { workspace = true }
27+
k256 = { workspace = true }
28+
prost = { workspace = true }
29+
thiserror = { workspace = true }
30+
3031
cosmwasm-schema = { workspace = true }
3132
cosmwasm-std = { workspace = true }
3233
cw-controllers = { workspace = true }
3334
cw-storage-plus = { workspace = true }
3435
cw-utils = { workspace = true }
35-
eots = { path = "../../packages/eots" }
36-
hex = { workspace = true }
37-
k256 = { workspace = true }
38-
thiserror = { workspace = true }
39-
prost = { workspace = true }
40-
anybuf = { workspace = true }
36+
37+
babylon-apis = { workspace = true }
38+
babylon-bindings = { workspace = true }
39+
babylon-bitcoin = { workspace = true }
40+
babylon-merkle = { workspace = true }
41+
babylon-proto = { workspace = true }
42+
eots = { workspace = true }
4143

4244
[dev-dependencies]
43-
babylon-bindings-test = { path = "../../packages/bindings-test" }
44-
btc-staking = { path = "../btc-staking", features = [ "library" ] }
45-
cosmwasm-vm = { workspace = true }
46-
test-utils = { path = "../../packages/test-utils" }
47-
anyhow = { workspace = true }
48-
derivative = { workspace = true }
49-
50-
cw-multi-test = { workspace = true }
45+
anyhow = { workspace = true }
46+
derivative = { workspace = true }
47+
48+
cosmwasm-vm = { workspace = true }
49+
cw-multi-test = { workspace = true }
50+
51+
babylon-bindings-test = { workspace = true }
52+
btc-staking = { workspace = true }
53+
test-utils = { workspace = true }

0 commit comments

Comments
 (0)