-
- Downloads
WIP generic runtime
Showing
- Cargo.toml 8 additions, 0 deletionsCargo.toml
- src/cache.rs 3 additions, 2 deletionssrc/cache.rs
- src/commands/collective.rs 8 additions, 7 deletionssrc/commands/collective.rs
- src/commands/expire.rs 10 additions, 9 deletionssrc/commands/expire.rs
- src/commands/identity.rs 6 additions, 6 deletionssrc/commands/identity.rs
- src/commands/net_test.rs 5 additions, 5 deletionssrc/commands/net_test.rs
- src/commands/oneshot.rs 13 additions, 13 deletionssrc/commands/oneshot.rs
- src/commands/revocation.rs 3 additions, 3 deletionssrc/commands/revocation.rs
- src/commands/smith.rs 11 additions, 11 deletionssrc/commands/smith.rs
- src/commands/sudo.rs 2 additions, 2 deletionssrc/commands/sudo.rs
- src/commands/transfer.rs 6 additions, 6 deletionssrc/commands/transfer.rs
- src/main.rs 7 additions, 6 deletionssrc/main.rs
... | ... | @@ -22,3 +22,11 @@ serde_json = "1.0.94" |
sp-core = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" } | ||
subxt = { git = "https://github.com/duniter/subxt.git", branch = "duniter-substrate-v0.9.32" } | ||
tokio = { version = "1.26.0", features = ["macros"] } | ||
# allows to build gcli with different predefined networks | ||
[features] | ||
default = ["dev"] # default feature is "dev" | ||
dev = [] | ||
gdev = [] | ||
gtest = [] | ||
g1 = [] |
Please register or sign in to comment