Skip to content

Commit 29e4bc6

Browse files
authored
Merge pull request #23 from KILTprotocol/bugfix/ap_fix_toml_file
fix: use double quotes in toml
2 parents b971a08 + 31deac8 commit 29e4bc6

File tree

1 file changed

+49
-49
lines changed

1 file changed

+49
-49
lines changed

Cargo.toml

+49-49
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,83 @@
11
[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"
77

88
[[bin]]
9-
name = 'node'
10-
path = 'src/main.rs'
9+
name = "node"
10+
path = "src/main.rs"
1111

1212
[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"
2222

2323
[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"
2727

2828
[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"
3232

3333
[dependencies.ctrlc]
34-
features = ['termination']
35-
version = '3.0'
34+
features = ["termination"]
35+
version = "3.0"
3636

3737
[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"
4141

4242
[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"
4646

4747
[dependencies.node-template-runtime]
48-
path = 'runtime'
48+
path = "runtime"
4949

5050
[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"
5454

5555
[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"
5858

5959
[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"
6262

6363
[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"
6666

6767
[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"
7070

7171
[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"
7474

7575
[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"
7979
[profile.release]
80-
panic = 'unwind'
80+
panic = "unwind"
8181

8282
[build-dependencies]
83-
vergen = '3'
83+
vergen = "3"

0 commit comments

Comments
 (0)