use rustls instead of openssl (!27)
* v0.2.9 * use rustls instead of openssl
... | @@ -9,7 +9,7 @@ rust-version = "1.75.0" | ... | @@ -9,7 +9,7 @@ rust-version = "1.75.0" |
license = "AGPL-3.0-only" | license = "AGPL-3.0-only" | ||
name = "gcli" | name = "gcli" | ||
repository = "https://git.duniter.org/clients/rust/gcli-v2s" | repository = "https://git.duniter.org/clients/rust/gcli-v2s" | ||
version = "0.2.8" | version = "0.2.9" | ||
[dependencies] | [dependencies] | ||
# subxt is main dependency | # subxt is main dependency | ||
... | @@ -29,10 +29,12 @@ clap = { version = "^4.5.0", features = ["derive"] } | ... | @@ -29,10 +29,12 @@ clap = { version = "^4.5.0", features = ["derive"] } |
codec = { package = "parity-scale-codec", version = "^3.6.9" } | codec = { package = "parity-scale-codec", version = "^3.6.9" } | ||
env_logger = "^0.10" | env_logger = "^0.10" | ||
futures = "^0.3.30" | futures = "^0.3.30" | ||
graphql_client = { version = "^0.13.0", features = ["reqwest"] } | graphql_client = { version = "^0.13.0", features = ["reqwest-rustls"] } | ||
hex = "^0.4.3" | hex = "^0.4.3" | ||
log = "^0.4.20" | log = "^0.4.20" | ||
reqwest = "^0.11.24" | reqwest = { version = "^0.11.24", default-features = false, features = [ | ||
"rustls-tls", | |||
] } | |||
rpassword = "^7.3.1" | rpassword = "^7.3.1" | ||
serde = { version = "^1.0", features = ["derive"] } | serde = { version = "^1.0", features = ["derive"] } | ||
serde_json = "^1.0.113" | serde_json = "^1.0.113" | ||
... | @@ -44,11 +46,11 @@ directories = "^5.0.1" | ... | @@ -44,11 +46,11 @@ directories = "^5.0.1" |
comfy-table = "^7.1.0" | comfy-table = "^7.1.0" | ||
# 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 | ||
nacl = { version = "^0.5.3" } # for old-style key generation | nacl = { version = "^0.5.3" } # for old-style key generation | ||
# this is beta crate for password-encrypted files | # this is beta crate for password-encrypted files | ||
age = { default-features = false, version = "^0.10.0", features = ["armor"] } | age = { default-features = false, version = "^0.10.0", features = ["armor"] } | ||
bip39 = { version = "^2.0.0", features = ["rand"] } # mnemonic | bip39 = { version = "^2.0.0", features = ["rand"] } # mnemonic | ||
# 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