wip
Showing
- Cargo.lock 54 additions, 0 deletionsCargo.lock
- Cargo.toml 6 additions, 1 deletionCargo.toml
- src/commands.rs 1 addition, 0 deletionssrc/commands.rs
- src/commands/profile.rs 594 additions, 0 deletionssrc/commands/profile.rs
- src/commands/transfer.rs 1 addition, 1 deletionsrc/commands/transfer.rs
- src/commands/vault.rs 1 addition, 1 deletionsrc/commands/vault.rs
- src/conf.rs 10 additions, 1 deletionsrc/conf.rs
- src/main.rs 4 additions, 0 deletionssrc/main.rs
... | @@ -35,16 +35,21 @@ hex = "^0.4.3" | ... | @@ -35,16 +35,21 @@ hex = "^0.4.3" |
log = "^0.4.22" | log = "^0.4.22" | ||
reqwest = { version = "^0.11.27", default-features = false, features = [ | reqwest = { version = "^0.11.27", default-features = false, features = [ | ||
"rustls-tls", | "rustls-tls", | ||
"json", | |||
] } | ] } | ||
inquire = "^0.7.5" | inquire = "^0.7.5" | ||
serde = { version = "^1.0", features = ["derive"] } | serde = { version = "^1.0", features = ["derive"] } | ||
serde_json = "^1.0.128" | serde_json = "^1.0.128" | ||
tokio = { version = "^1.40.0", features = ["macros"] } | tokio = { version = "^1.40.0", features = ["macros", "time"] } | ||
tokio-tungstenite = { version = "0.21.0", features = ["rustls-tls-webpki-roots"] } | |||
url = "2.5.0" | |||
confy = "^0.5.1" | confy = "^0.5.1" | ||
bs58 = "^0.5.1" | bs58 = "^0.5.1" | ||
directories = "^5.0.1" | directories = "^5.0.1" | ||
comfy-table = "^7.1.1" | comfy-table = "^7.1.1" | ||
sea-orm = { version = "1.1.0", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" ] } | sea-orm = { version = "1.1.0", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" ] } | ||
sha2 = "0.10.8" | |||
secp256k1 = { version = "0.28.2", features = ["rand", "recovery"] } | |||
# crypto | # crypto | ||
scrypt = { version = "^0.11", default-features = false } # for old-style key generation | scrypt = { version = "^0.11", default-features = false } # for old-style key generation | ||
... | ... |
src/commands/profile.rs
0 → 100644
This diff is collapsed.
Please register or sign in to comment