@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
1515codec = { package = " parity-scale-codec" , version = " 3" , default-features = false , features = [" derive" , " max-encoded-len" ] }
1616scale-info = { version = " 2.1.1" , default-features = false , features = [" derive" ] }
1717
18- pallet-vanchor = { path = " ../vanchor" , default-features = false }
19- pallet-vanchor-handler = {path = " ../../pallets/vanchor-handler" , default-features = false }
20- pallet-signature-bridge = { path = " ../../pallets/signature-bridge" , default-features = false }
18+ orml-traits = { git = " https://github.com/open-web3-stack/open-runtime-module-library.git" , branch = " polkadot-v0.9.36" , default-features = false }
2119pallet-asset-registry = { path = " ../asset-registry" , default-features = false }
2220pallet-balances = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
23- pallet-mt = { path = " ../mt" , default-features = false }
2421pallet-linkable-tree = { path = " ../linkable-tree" , default-features = false }
22+ pallet-mt = { path = " ../mt" , default-features = false }
23+ pallet-signature-bridge = { path = " ../../pallets/signature-bridge" , default-features = false }
2524pallet-token-wrapper = { path = " ../token-wrapper" , default-features = false }
26- orml-traits = { git = " https://github.com/open-web3-stack/open-runtime-module-library.git" , branch = " polkadot-v0.9.36" , default-features = false }
25+ pallet-vanchor = { path = " ../vanchor" , default-features = false }
26+ pallet-vanchor-handler = { path = " ../../pallets/vanchor-handler" , default-features = false }
2727
2828frame-support = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
2929frame-system = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
@@ -32,51 +32,51 @@ sp-std = { default-features = false, git = "https://github.com/paritytech/substr
3232webb-primitives = { path = " ../../primitives" , default-features = false }
3333
3434[dev-dependencies ]
35- hex = " 0.4"
36- serde = { version = " 1.0.119" }
37- sp-core = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
38- sp-io = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
39- sp-runtime = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
35+ ark-bls12-381 = { version = " ^0.3.0" , default-features = false , features = [" curve" ] }
36+ ark-bn254 = { version = " ^0.3.0" , default-features = false , features = [" curve" ] }
4037ark-crypto-primitives = { version = " ^0.3.0" , features = [" r1cs" ], default-features = false }
41- ark-ff = { version = " ^0.3.0" , default-features = false }
4238ark-ec = { version = " ^0.3.0" , default-features = false }
43- ark-std = { version = " ^0.3.0" , default-features = false }
39+ ark-ff = { version = " ^0.3.0" , default-features = false }
4440ark-relations = { version = " ^0.3.0" , default-features = false }
45- ark-serialize = { version = " ^0.3.0" , default-features = false , features = [ " derive" ] }
46- ark-bls12-381 = { version = " ^0.3.0" , default-features = false , features = [ " curve" ] }
47- ark-bn254 = { version = " ^0.3.0" , default-features = false , features = [ " curve" ] }
41+ ark-serialize = { version = " ^0.3.0" , default-features = false , features = [" derive" ] }
42+ ark-std = { version = " ^0.3.0" , default-features = false }
4843arkworks-setups = { version = " 1.2.1" , features = [" r1cs" ], default-features = false }
44+ frame-benchmarking = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
45+ hex = " 0.4"
4946orml-currencies = { git = " https://github.com/open-web3-stack/open-runtime-module-library.git" , branch = " polkadot-v0.9.36" , default-features = false }
5047orml-tokens = { git = " https://github.com/open-web3-stack/open-runtime-module-library.git" , branch = " polkadot-v0.9.36" , default-features = false }
5148pallet-hasher = { path = " ../hasher" , default-features = false }
52- pallet-key-storage = {path = " ../key-storage" }
49+ pallet-key-storage = { path = " ../key-storage" }
5350pallet-timestamp = { default-features = true , git = " https://github.com/paritytech/substrate" , branch = " polkadot-v0.9.36" }
5451pallet-vanchor-verifier = { path = " ../vanchor-verifier" , default-features = false }
55- frame-benchmarking = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
52+ serde = { version = " 1.0.119" }
53+ sp-core = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
54+ sp-io = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
55+ sp-runtime = { default-features = false , git = " https://github.com/paritytech/substrate.git" , branch = " polkadot-v0.9.36" }
5656
5757[features ]
5858default = [" std" ]
59+ runtime-benchmarks = [
60+ " frame-system/runtime-benchmarks" ,
61+ " frame-support/runtime-benchmarks" ,
62+ ]
5963std = [
60- " codec/std" ,
61- " frame-support/std" ,
62- " frame-system/std" ,
63- " sp-runtime/std" ,
64- " sp-std/std" ,
65- " webb-primitives/std" ,
66- " webb-primitives/hashing" ,
67- " frame-benchmarking/std" ,
68- " orml-currencies/std" ,
69- " orml-tokens/std" ,
70- " orml-traits/std" ,
71- " pallet-asset-registry/std" ,
72- " pallet-balances/std" ,
73- " pallet-vanchor/std" ,
74- " pallet-mt/std" ,
75- " pallet-vanchor-verifier/std" ,
76- " pallet-token-wrapper/std"
64+ " codec/std" ,
65+ " frame-support/std" ,
66+ " frame-system/std" ,
67+ " sp-runtime/std" ,
68+ " sp-std/std" ,
69+ " webb-primitives/std" ,
70+ " webb-primitives/hashing" ,
71+ " frame-benchmarking/std" ,
72+ " orml-currencies/std" ,
73+ " orml-tokens/std" ,
74+ " orml-traits/std" ,
75+ " pallet-asset-registry/std" ,
76+ " pallet-balances/std" ,
77+ " pallet-vanchor/std" ,
78+ " pallet-mt/std" ,
79+ " pallet-vanchor-verifier/std" ,
80+ " pallet-token-wrapper/std" ,
7781
7882]
79- runtime-benchmarks = [
80- " frame-system/runtime-benchmarks" ,
81- " frame-support/runtime-benchmarks" ,
82- ]
0 commit comments