fix CI with rust stable
This diff is collapsed.
... | @@ -5,10 +5,11 @@ authors = [ | ... | @@ -5,10 +5,11 @@ authors = [ |
"h30x <hugo@trentesaux.fr>", | "h30x <hugo@trentesaux.fr>", | ||
] | ] | ||
edition = "2021" | edition = "2021" | ||
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.4" | version = "0.2.5" | ||
[dependencies] | [dependencies] | ||
# subxt is main dependency | # subxt is main dependency | ||
... | @@ -29,16 +30,16 @@ futures = "^0.3.30" | ... | @@ -29,16 +30,16 @@ futures = "^0.3.30" |
graphql_client = { version = "^0.12.0", features = ["reqwest"] } | graphql_client = { version = "^0.12.0", features = ["reqwest"] } | ||
hex = "^0.4.3" | hex = "^0.4.3" | ||
log = "^0.4.20" | log = "^0.4.20" | ||
reqwest = "^0.11.23" | reqwest = "^0.11.24" | ||
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" | ||
tokio = { version = "^1.35.1", features = ["macros"] } | tokio = { version = "^1.36.0", features = ["macros"] } | ||
confy = "^0.5.1" | confy = "^0.5.1" | ||
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 | ||
bs58 = "^0.5.0" | bs58 = "^0.5.0" | ||
inquire = "0.6.2" | inquire = "^0.6.2" | ||
# 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