Diener workspacify

Signed-off-by: alvicsam <alvicsam@gmail.com>
This commit is contained in:
alvicsam
2023-08-25 11:05:17 +02:00
parent 8ba894c0bc
commit f441a5fc93
422 changed files with 5044 additions and 4598 deletions
@@ -11,15 +11,15 @@ scale-info = { version = "2.9.0", default-features = false, features = ["derive"
tracing = { version = "0.1.37", optional = true }
# Substrate
sc-client-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
sp-storage = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
sc-client-api = { path = "../../../substrate/client/api", optional = true}
sp-api = { path = "../../../substrate/primitives/api", optional = true}
sp-core = { path = "../../../substrate/primitives/core", default-features = false}
sp-inherents = { path = "../../../substrate/primitives/inherents", default-features = false}
sp-runtime = { path = "../../../substrate/primitives/runtime", optional = true}
sp-state-machine = { path = "../../../substrate/primitives/state-machine", optional = true}
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
sp-storage = { path = "../../../substrate/primitives/storage", optional = true}
sp-trie = { path = "../../../substrate/primitives/trie", default-features = false}
# Cumulus
cumulus-primitives-core = { path = "../core", default-features = false }