1
1
[package ]
2
2
name = " contracts-node"
3
- version = " 0.27 .0"
3
+ version = " 0.28 .0"
4
4
authors = [
" Parity Technologies <[email protected] >" ]
5
5
description = " Substrate node configured for smart contracts via `pallet-contracts`."
6
6
edition = " 2021"
@@ -19,32 +19,34 @@ path = "src/main.rs"
19
19
20
20
[dependencies ]
21
21
clap = { version = " 4.2.7" , features = [" derive" ] }
22
-
23
- sc-cli = { git = " https://github.com/paritytech/substrate" , package = " sc-cli" , default-features = false , branch = " polkadot-v0.9.43" }
24
- sp-core = { git = " https://github.com/paritytech/substrate" , package = " sp-core" , branch = " polkadot-v0.9.43" }
25
- sc-executor = { git = " https://github.com/paritytech/substrate" , package = " sc-executor" , branch = " polkadot-v0.9.43" }
26
- sc-network = { git = " https://github.com/paritytech/substrate" , package = " sc-network" , branch = " polkadot-v0.9.43" }
27
- sc-service = { git = " https://github.com/paritytech/substrate" , package = " sc-service" , default-features = false , branch = " polkadot-v0.9.43" }
28
- sc-telemetry = { git = " https://github.com/paritytech/substrate" , package = " sc-telemetry" , branch = " polkadot-v0.9.43" }
29
- sc-keystore = { git = " https://github.com/paritytech/substrate" , package = " sc-keystore" , branch = " polkadot-v0.9.43" }
30
- sc-transaction-pool = { git = " https://github.com/paritytech/substrate" , package = " sc-transaction-pool" , branch = " polkadot-v0.9.43" }
31
- sc-transaction-pool-api = { git = " https://github.com/paritytech/substrate" , package = " sc-transaction-pool-api" , branch = " polkadot-v0.9.43" }
32
- sc-consensus = { git = " https://github.com/paritytech/substrate" , package = " sc-consensus" , branch = " polkadot-v0.9.43" }
33
- sc-consensus-manual-seal = { git = " https://github.com/paritytech/substrate" , package = " sc-consensus-manual-seal" , branch = " polkadot-v0.9.43" }
34
- sc-client-api = { git = " https://github.com/paritytech/substrate" , package = " sc-client-api" , branch = " polkadot-v0.9.43" }
35
- sp-runtime = { git = " https://github.com/paritytech/substrate" , package = " sp-runtime" , branch = " polkadot-v0.9.43" }
36
- sp-timestamp = { git = " https://github.com/paritytech/substrate" , package = " sp-timestamp" , branch = " polkadot-v0.9.43" }
22
+ futures = { version = " 0.3.21" , features = [" thread-pool" ]}
23
+
24
+ sc-cli = { git = " https://github.com/paritytech/substrate" , package = " sc-cli" , default-features = false , branch = " polkadot-v1.0.0" }
25
+ sp-core = { git = " https://github.com/paritytech/substrate" , package = " sp-core" , branch = " polkadot-v1.0.0" }
26
+ sc-executor = { git = " https://github.com/paritytech/substrate" , package = " sc-executor" , branch = " polkadot-v1.0.0" }
27
+ sc-network = { git = " https://github.com/paritytech/substrate" , package = " sc-network" , branch = " polkadot-v1.0.0" }
28
+ sc-service = { git = " https://github.com/paritytech/substrate" , package = " sc-service" , default-features = false , branch = " polkadot-v1.0.0" }
29
+ sc-telemetry = { git = " https://github.com/paritytech/substrate" , package = " sc-telemetry" , branch = " polkadot-v1.0.0" }
30
+ sc-keystore = { git = " https://github.com/paritytech/substrate" , package = " sc-keystore" , branch = " polkadot-v1.0.0" }
31
+ sc-transaction-pool = { git = " https://github.com/paritytech/substrate" , package = " sc-transaction-pool" , branch = " polkadot-v1.0.0" }
32
+ sc-transaction-pool-api = { git = " https://github.com/paritytech/substrate" , package = " sc-transaction-pool-api" , branch = " polkadot-v1.0.0" }
33
+ sc-offchain = { git = " https://github.com/paritytech/substrate" , package = " sc-offchain" , branch = " polkadot-v1.0.0" }
34
+ sc-consensus = { git = " https://github.com/paritytech/substrate" , package = " sc-consensus" , branch = " polkadot-v1.0.0" }
35
+ sc-consensus-manual-seal = { git = " https://github.com/paritytech/substrate" , package = " sc-consensus-manual-seal" , branch = " polkadot-v1.0.0" }
36
+ sc-client-api = { git = " https://github.com/paritytech/substrate" , package = " sc-client-api" , branch = " polkadot-v1.0.0" }
37
+ sp-runtime = { git = " https://github.com/paritytech/substrate" , package = " sp-runtime" , branch = " polkadot-v1.0.0" }
38
+ sp-timestamp = { git = " https://github.com/paritytech/substrate" , package = " sp-timestamp" , branch = " polkadot-v1.0.0" }
37
39
38
40
# These dependencies are used for the node's RPCs
39
41
jsonrpsee = { version = " 0.16.2" , features = [" server" ] }
40
- sc-rpc = { git = " https://github.com/paritytech/substrate" , package = " sc-rpc " , branch = " polkadot-v0.9.43 " }
41
- sp-api = { git = " https://github.com/paritytech/substrate" , package = " sp-api " , branch = " polkadot-v0.9.43 " }
42
- sc-rpc-api = { git = " https://github.com/paritytech/substrate" , package = " sc-rpc-api" , branch = " polkadot-v0.9.43 " }
43
- sp-blockchain = { git = " https://github.com/paritytech/substrate" , package = " sp-blockchain" , branch = " polkadot-v0.9.43 " }
44
- sp-block-builder = { git = " https://github.com/paritytech/substrate" , package = " sp-block-builder" , branch = " polkadot-v0.9.43 " }
45
- sc-basic-authorship = { git = " https://github.com/paritytech/substrate" , package = " sc-basic-authorship" , branch = " polkadot-v0.9.43 " }
46
- substrate-frame-rpc-system = { git = " https://github.com/paritytech/substrate" , package = " substrate-frame-rpc-system" , branch = " polkadot-v0.9.43 " }
47
- pallet-transaction-payment-rpc = { git = " https://github.com/paritytech/substrate" , package = " pallet-transaction-payment-rpc" , branch = " polkadot-v0.9.43 " }
42
+ sp-api = { git = " https://github.com/paritytech/substrate" , package = " sp-api " , branch = " polkadot-v1.0.0 " }
43
+ sc-rpc = { git = " https://github.com/paritytech/substrate" , package = " sc-rpc " , branch = " polkadot-v1.0.0 " }
44
+ sc-rpc-api = { git = " https://github.com/paritytech/substrate" , package = " sc-rpc-api" , branch = " polkadot-v1.0.0 " }
45
+ sp-blockchain = { git = " https://github.com/paritytech/substrate" , package = " sp-blockchain" , branch = " polkadot-v1.0.0 " }
46
+ sp-block-builder = { git = " https://github.com/paritytech/substrate" , package = " sp-block-builder" , branch = " polkadot-v1.0.0 " }
47
+ sc-basic-authorship = { git = " https://github.com/paritytech/substrate" , package = " sc-basic-authorship" , branch = " polkadot-v1.0.0 " }
48
+ substrate-frame-rpc-system = { git = " https://github.com/paritytech/substrate" , package = " substrate-frame-rpc-system" , branch = " polkadot-v1.0.0 " }
49
+ pallet-transaction-payment-rpc = { git = " https://github.com/paritytech/substrate" , package = " pallet-transaction-payment-rpc" , branch = " polkadot-v1.0.0 " }
48
50
49
51
# Local Dependencies
50
52
contracts-node-runtime = { path = " ../runtime" }
@@ -55,7 +57,7 @@ contracts-node-runtime = { path = "../runtime" }
55
57
enum-as-inner = " =0.5.1"
56
58
57
59
[build-dependencies ]
58
- substrate-build-script-utils = { git = " https://github.com/paritytech/substrate" , package = " substrate-build-script-utils" , branch = " polkadot-v0.9.43 " }
60
+ substrate-build-script-utils = { git = " https://github.com/paritytech/substrate" , package = " substrate-build-script-utils" , branch = " polkadot-v1.0.0 " }
59
61
60
62
[features ]
61
63
default = []
0 commit comments