-
- Downloads
Command notify
Showing
- .vscode/settings.json 3 additions, 0 deletions.vscode/settings.json
- Cargo.lock 622 additions, 474 deletionsCargo.lock
- Cargo.toml 4 additions, 1 deletionCargo.toml
- src/cache.rs 1 addition, 2 deletionssrc/cache.rs
- src/commands.rs 1 addition, 0 deletionssrc/commands.rs
- src/commands/identity.rs 10 additions, 14 deletionssrc/commands/identity.rs
- src/commands/notify.rs 312 additions, 0 deletionssrc/commands/notify.rs
- src/commands/smith.rs 7 additions, 14 deletionssrc/commands/smith.rs
- src/data.rs 1 addition, 1 deletionsrc/data.rs
- src/indexer.rs 1 addition, 2 deletionssrc/indexer.rs
- src/main.rs 11 additions, 4 deletionssrc/main.rs
.vscode/settings.json
0 → 100644
This diff is collapsed.
... | @@ -8,12 +8,15 @@ version = "0.1.0" | ... | @@ -8,12 +8,15 @@ version = "0.1.0" |
[dependencies] | [dependencies] | ||
anyhow = "1.0" | anyhow = "1.0" | ||
chrono = "0.4.26" | |||
clap = { version = "4.1.9", features = ["derive"] } | clap = { version = "4.1.9", features = ["derive"] } | ||
codec = { package = "parity-scale-codec", version = "3.4.0" } | codec = { package = "parity-scale-codec", version = "3.4.0" } | ||
confy = "0.5.1" | |||
env_logger = "0.10" | env_logger = "0.10" | ||
futures = "0.3.27" | futures = "0.3.27" | ||
graphql_client = { version = "0.12.0", features = ["reqwest"] } | graphql_client = { version = "0.12.0", features = ["reqwest"] } | ||
hex = "0.4.3" | hex = "0.4.3" | ||
lettre = "0.10.4" | |||
log = "0.4.17" | log = "0.4.17" | ||
reqwest = "0.11.14" | reqwest = "0.11.14" | ||
rpassword = "7.2.0" | rpassword = "7.2.0" | ||
... | @@ -22,11 +25,11 @@ serde_json = "1.0.94" | ... | @@ -22,11 +25,11 @@ serde_json = "1.0.94" |
sp-core = { git = "https://github.com/duniter/substrate", branch = "duniter-substrate-v0.9.32" } | 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" } | subxt = { git = "https://github.com/duniter/subxt.git", branch = "duniter-substrate-v0.9.32" } | ||
tokio = { version = "1.26.0", features = ["macros"] } | tokio = { version = "1.26.0", features = ["macros"] } | ||
confy = "0.5.1" | |||
# allows to build gcli for different runtimes and with different predefined networks | # allows to build gcli for different runtimes and with different predefined networks | ||
[features] | [features] | ||
default = ["gdev"] # default runtime is "gdev", gdev network is available | default = ["gdev"] # default runtime is "gdev", gdev network is available | ||
gdev = [] | gdev = [] | ||
gtest = [] | gtest = [] | ||
g1 = [] | g1 = [] |
src/commands/notify.rs
0 → 100644
Please register or sign in to comment