|
1 | 1 | [package]
|
2 |
| -authors = ['Parity Technologies <admin@parity.io>'] |
3 |
| -build = 'build.rs' |
4 |
| -edition = '2018' |
5 |
| -name = 'node-template' |
6 |
| -version = '0.10.0' |
| 2 | +authors = ["Parity Technologies <admin@parity.io>"] |
| 3 | +build = "build.rs" |
| 4 | +edition = "2018" |
| 5 | +name = "node-template" |
| 6 | +version = "0.10.0" |
7 | 7 |
|
8 | 8 | [[bin]]
|
9 |
| -name = 'node' |
10 |
| -path = 'src/main.rs' |
| 9 | +name = "node" |
| 10 | +path = "src/main.rs" |
11 | 11 |
|
12 | 12 | [dependencies]
|
13 |
| -error-chain = '0.12' |
14 |
| -exit-future = '0.1' |
15 |
| -futures = '0.1' |
16 |
| -hex-literal = '0.1' |
17 |
| -log = '0.4' |
18 |
| -parity-codec = '3.2' |
19 |
| -parking_lot = '0.7.1' |
20 |
| -tokio = '0.1' |
21 |
| -trie-root = '0.11.0' |
| 13 | +error-chain = "0.12" |
| 14 | +exit-future = "0.1" |
| 15 | +futures = "0.1" |
| 16 | +hex-literal = "0.1" |
| 17 | +log = "0.4" |
| 18 | +parity-codec = "3.2" |
| 19 | +parking_lot = "0.7.1" |
| 20 | +tokio = "0.1" |
| 21 | +trie-root = "0.11.0" |
22 | 22 |
|
23 | 23 | [dependencies.basic-authorship]
|
24 |
| -git = 'https://github.com/paritytech/substrate.git' |
25 |
| -package = 'substrate-basic-authorship' |
26 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 24 | +git = "https://github.com/paritytech/substrate.git" |
| 25 | +package = "substrate-basic-authorship" |
| 26 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
27 | 27 |
|
28 | 28 | [dependencies.consensus]
|
29 |
| -git = 'https://github.com/paritytech/substrate.git' |
30 |
| -package = 'substrate-consensus-aura' |
31 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 29 | +git = "https://github.com/paritytech/substrate.git" |
| 30 | +package = "substrate-consensus-aura" |
| 31 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
32 | 32 |
|
33 | 33 | [dependencies.ctrlc]
|
34 |
| -features = ['termination'] |
35 |
| -version = '3.0' |
| 34 | +features = ["termination"] |
| 35 | +version = "3.0" |
36 | 36 |
|
37 | 37 | [dependencies.inherents]
|
38 |
| -git = 'https://github.com/paritytech/substrate.git' |
39 |
| -package = 'substrate-inherents' |
40 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 38 | +git = "https://github.com/paritytech/substrate.git" |
| 39 | +package = "substrate-inherents" |
| 40 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
41 | 41 |
|
42 | 42 | [dependencies.network]
|
43 |
| -git = 'https://github.com/paritytech/substrate.git' |
44 |
| -package = 'substrate-network' |
45 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 43 | +git = "https://github.com/paritytech/substrate.git" |
| 44 | +package = "substrate-network" |
| 45 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
46 | 46 |
|
47 | 47 | [dependencies.node-template-runtime]
|
48 |
| -path = 'runtime' |
| 48 | +path = "runtime" |
49 | 49 |
|
50 | 50 | [dependencies.primitives]
|
51 |
| -git = 'https://github.com/paritytech/substrate.git' |
52 |
| -package = 'substrate-primitives' |
53 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 51 | +git = "https://github.com/paritytech/substrate.git" |
| 52 | +package = "substrate-primitives" |
| 53 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
54 | 54 |
|
55 | 55 | [dependencies.sr-io]
|
56 |
| -git = 'https://github.com/paritytech/substrate.git' |
57 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 56 | +git = "https://github.com/paritytech/substrate.git" |
| 57 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
58 | 58 |
|
59 | 59 | [dependencies.substrate-cli]
|
60 |
| -git = 'https://github.com/paritytech/substrate.git' |
61 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 60 | +git = "https://github.com/paritytech/substrate.git" |
| 61 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
62 | 62 |
|
63 | 63 | [dependencies.substrate-client]
|
64 |
| -git = 'https://github.com/paritytech/substrate.git' |
65 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 64 | +git = "https://github.com/paritytech/substrate.git" |
| 65 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
66 | 66 |
|
67 | 67 | [dependencies.substrate-executor]
|
68 |
| -git = 'https://github.com/paritytech/substrate.git' |
69 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 68 | +git = "https://github.com/paritytech/substrate.git" |
| 69 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
70 | 70 |
|
71 | 71 | [dependencies.substrate-service]
|
72 |
| -git = 'https://github.com/paritytech/substrate.git' |
73 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 72 | +git = "https://github.com/paritytech/substrate.git" |
| 73 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
74 | 74 |
|
75 | 75 | [dependencies.transaction-pool]
|
76 |
| -git = 'https://github.com/paritytech/substrate.git' |
77 |
| -package = 'substrate-transaction-pool' |
78 |
| -rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a' |
| 76 | +git = "https://github.com/paritytech/substrate.git" |
| 77 | +package = "substrate-transaction-pool" |
| 78 | +rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a" |
79 | 79 | [profile.release]
|
80 |
| -panic = 'unwind' |
| 80 | +panic = "unwind" |
81 | 81 |
|
82 | 82 | [build-dependencies]
|
83 |
| -vergen = '3' |
| 83 | +vergen = "3" |
0 commit comments