-
- Downloads
gcli command auto completion and arm64 build
- Added detailed instructions for generating the completion script and registering it for your shell when calling `gcli completion --help` - Added that information in the CHANGELOG.md - Moved `indoc` crate dependency in Cargo.toml to make it explicit it's now also used outside of tests.
parent
bc740162
No related branches found
No related tags found
... | @@ -46,6 +46,7 @@ bs58 = "^0.5.1" | ... | @@ -46,6 +46,7 @@ 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" ] } | ||
indoc = "2.0.5" | |||
# 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 | ||
... | @@ -56,7 +57,6 @@ colored = "2.1.0" | ... | @@ -56,7 +57,6 @@ colored = "2.1.0" |
# Tests | # Tests | ||
rstest = "0.23.0" | rstest = "0.23.0" | ||
indoc = "2.0.5" | |||
# 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] | ||
... | ... |
Please register or sign in to comment