Skip to content

Commit

Permalink
Merge pull request #23 from KILTprotocol/bugfix/ap_fix_toml_file
Browse files Browse the repository at this point in the history
fix: use double quotes in toml
  • Loading branch information
aenyway authored Apr 10, 2019
2 parents b971a08 + 31deac8 commit 29e4bc6
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,83 +1,83 @@
[package]
authors = ['Parity Technologies <admin@parity.io>']
build = 'build.rs'
edition = '2018'
name = 'node-template'
version = '0.10.0'
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
edition = "2018"
name = "node-template"
version = "0.10.0"

[[bin]]
name = 'node'
path = 'src/main.rs'
name = "node"
path = "src/main.rs"

[dependencies]
error-chain = '0.12'
exit-future = '0.1'
futures = '0.1'
hex-literal = '0.1'
log = '0.4'
parity-codec = '3.2'
parking_lot = '0.7.1'
tokio = '0.1'
trie-root = '0.11.0'
error-chain = "0.12"
exit-future = "0.1"
futures = "0.1"
hex-literal = "0.1"
log = "0.4"
parity-codec = "3.2"
parking_lot = "0.7.1"
tokio = "0.1"
trie-root = "0.11.0"

[dependencies.basic-authorship]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-basic-authorship'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
package = "substrate-basic-authorship"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.consensus]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-consensus-aura'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
package = "substrate-consensus-aura"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.ctrlc]
features = ['termination']
version = '3.0'
features = ["termination"]
version = "3.0"

[dependencies.inherents]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-inherents'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
package = "substrate-inherents"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.network]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-network'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
package = "substrate-network"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.node-template-runtime]
path = 'runtime'
path = "runtime"

[dependencies.primitives]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-primitives'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
package = "substrate-primitives"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.sr-io]
git = 'https://github.com/paritytech/substrate.git'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.substrate-cli]
git = 'https://github.com/paritytech/substrate.git'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.substrate-client]
git = 'https://github.com/paritytech/substrate.git'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.substrate-executor]
git = 'https://github.com/paritytech/substrate.git'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.substrate-service]
git = 'https://github.com/paritytech/substrate.git'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"

[dependencies.transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-transaction-pool'
rev = '2ba93e317c637ffee06153e15ca7c39f6812e88a'
git = "https://github.com/paritytech/substrate.git"
package = "substrate-transaction-pool"
rev = "2ba93e317c637ffee06153e15ca7c39f6812e88a"
[profile.release]
panic = 'unwind'
panic = "unwind"

[build-dependencies]
vergen = '3'
vergen = "3"

0 comments on commit 29e4bc6

Please sign in to comment.