-
- Downloads
feat: add wallet command
Showing
- Cargo.lock 73 additions, 0 deletionsCargo.lock
- Cargo.toml 2 additions, 0 deletionsCargo.toml
- README.md 83 additions, 0 deletionsREADME.md
- src/commands.rs 6 additions, 0 deletionssrc/commands.rs
- src/commands/wallet.rs 215 additions, 0 deletionssrc/commands/wallet.rs
- src/main.rs 11 additions, 3 deletionssrc/main.rs
... | @@ -9,8 +9,10 @@ description = "A command line client written in Rust that use Duniter GVA API." | ... | @@ -9,8 +9,10 @@ description = "A command line client written in Rust that use Duniter GVA API." |
[dependencies] | [dependencies] | ||
anyhow = "1.0.32" | anyhow = "1.0.32" | ||
dup-crypto = { version = "0.43.2", features = [ "bip32-ed25519", "dewif", "mnemonic"] } | |||
graphql_client = "0.9.0" | graphql_client = "0.9.0" | ||
reqwest = { version = "0.10.9", features = ["blocking", "json"] } | reqwest = { version = "0.10.9", features = ["blocking", "json"] } | ||
rpassword = "5.0.1" | |||
serde = { version = "1.0.105", features = ["derive"] } | serde = { version = "1.0.105", features = ["derive"] } | ||
structopt = "0.3.18" | structopt = "0.3.18" | ||
... | ... |
src/commands/wallet.rs
0 → 100644
Please register or sign in to comment