-
- Downloads
refac
WIP add tracking progress WIP refac progress tracking WIP generic runtime wip needing runtime name wip refac smith cert
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 14 additions, 9 deletionssrc/commands/expire.rs
- src/commands/identity.rs 22 additions, 17 deletionssrc/commands/identity.rs
- src/commands/net_test.rs 5 additions, 6 deletionssrc/commands/net_test.rs
- src/commands/oneshot.rs 17 additions, 13 deletionssrc/commands/oneshot.rs
- src/commands/revocation.rs 3 additions, 3 deletionssrc/commands/revocation.rs
- src/commands/smith.rs 16 additions, 41 deletionssrc/commands/smith.rs
- src/commands/sudo.rs 2 additions, 2 deletionssrc/commands/sudo.rs
- src/commands/transfer.rs 7 additions, 6 deletionssrc/commands/transfer.rs
- src/keys.rs 2 additions, 1 deletionsrc/keys.rs
- src/main.rs 165 additions, 59 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 sign in to comment