-
- Downloads
Reusing `inquire` dependency (which I didn't see in the first place) for user inputs
* Had to bump up the dependency since version 0.6.2 had a bug for the password confirmation - see https://github.com/mikaelmello/inquire/issues/149 * Removed `dialoguer` dependency * We may want to replace all `rpassword` usage with `inquire` in the future
parent
30ebcf10
Branches
Tags
... | ... | @@ -36,14 +36,13 @@ log = "^0.4.22" |
reqwest = { version = "^0.11.27", default-features = false, features = [ | ||
"rustls-tls", | ||
] } | ||
inquire = "^0.7.5" | ||
rpassword = "^7.3.1" | ||
dialoguer = "0.11.0" | ||
serde = { version = "^1.0", features = ["derive"] } | ||
serde_json = "^1.0.128" | ||
tokio = { version = "^1.40.0", features = ["macros"] } | ||
confy = "^0.5.1" | ||
bs58 = "^0.5.1" | ||
inquire = "^0.6.2" | ||
directories = "^5.0.1" | ||
comfy-table = "^7.1.1" | ||
sea-orm = { version = "1.1.0", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" ] } | ||
... | ... |
Please sign in to comment