Skip to content

Commit

Permalink
Relaxed dependencies versions in libvdrtools
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Mircea <[email protected]>
  • Loading branch information
bobozaur committed Oct 11, 2023
1 parent d6618db commit ba46d1e
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 49 deletions.
30 changes: 15 additions & 15 deletions libvdrtools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ mysql_storage = []
fatal_warnings = []

[dependencies]
async-std = { version = "1.8.0", features = ["attributes"] }
async-trait = "0.1.42"
failure = { version = "0.1.8", features = ["backtrace"] }
hex = "0.4.0"
libc = "0.2.148"
log = "0.4.8"
log-derive = "0.4.1"
bs58 = { version = "0.5.0", optional = true }
serde = "1.0.99"
serde_json = "1.0.40"
serde_derive = "1.0.99"
lazy_static = "1.3"
zeroize = "1.6.0"
regex = "1.2.1"
async-std = { version = "1", features = ["attributes"] }
async-trait = "0.1"
failure = { version = "0.1", features = ["backtrace"] }
hex = "0.4"
libc = "0.2"
log = "0.4"
log-derive = "0.4"
bs58 = { version = "0.5", optional = true }
serde = "1"
serde_json = "1"
serde_derive = "1"
lazy_static = "1"
zeroize = "1"
regex = "1"
indy-api-types = { path = "./indy-api-types"}
indy-utils = { path = "./indy-utils"}
indy-wallet = { path = "./indy-wallet"}
futures = { version = "0.3", default-features = false, features = [ "executor", "alloc", "thread-pool" ] }
ursa = { version = "0.3.7", optional = true, default-features = false, features = ["cl_native"] }

[dev-dependencies]
dirs = "5.0.1"
dirs = "5"
16 changes: 8 additions & 8 deletions libvdrtools/indy-api-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
thiserror = "1.0.40"
thiserror = "1"
futures = { version = "0.3", default-features = false, features = ["std"] }
log = { version = "0.4.17", features = ["std"] }
libc = "0.2.148"
serde = "1.0.99"
serde_json = "1.0.40"
serde_derive = "1.0.99"
log = { version = "0.4", features = ["std"] }
libc = "0.2"
serde = "1"
serde_json = "1"
serde_derive = "1"
openssl = { version = "0.10" }
bs58 = "0.5.0"
sqlx = { version = "0.7.1", features = [ "sqlite", "mysql", "runtime-tokio-rustls" ] }
bs58 = "0.5"
sqlx = { version = "0.7", features = [ "sqlite", "mysql", "runtime-tokio-rustls" ] }
ursa = { version = "0.3.7", default-features = false, features = ["wasm"] }
26 changes: 13 additions & 13 deletions libvdrtools/indy-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ hash_openssl = []
randombytes_sodium = []

[dependencies]
base64 = {version = "0.21.4"}
dirs = "5.0.1"
failure = "0.1.6"
base64 = {version = "0.21"}
dirs = "5"
failure = "0.1"
indy-api-types = { path = "../indy-api-types"}
lazy_static = "1.3"
libc = "0.2.148"
log = "0.4.8"
lazy_static = "1"
libc = "0.2"
log = "0.4"
openssl = { version = "0.10" }
serde = "1.0.99"
serde_json = "1.0.40"
serde_derive = "1.0.99"
sodiumoxide = {version = "0.0.16"}
zeroize = "1.6.0"
serde = "1"
serde_json = "1"
serde_derive = "1"
sodiumoxide = {version = "0.0.16"} # touching this makes things go boom
zeroize = "1"

[dev-dependencies]
rmp-serde = "1.1.2"
rand = "0.8.5"
rmp-serde = "1"
rand = "0.8"
26 changes: 13 additions & 13 deletions libvdrtools/indy-wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ mysql = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-trait = "0.1.42"
byteorder = "1.3.2"
async-trait = "0.1"
byteorder = "1"
futures = { version = "0.3", default-features = false, features = [ "alloc" ] }
indy-api-types = { path = "../indy-api-types" }
indy-utils = { path = "../indy-utils"}
libc = "0.2.148"
log = "0.4.8"
rmp-serde = "1.1.2"
bs58 = "0.5.0"
serde = "1.0.99"
serde_json = "1.0.40"
serde_derive = "1.0.99"
sqlx = { version = "0.7.1", features = [ "sqlite", "mysql", "runtime-tokio-rustls" ] }
zeroize = "1.6.0"
lru = "0.12.0"
libc = "0.2"
log = "0.4"
rmp-serde = "1"
bs58 = "0.5"
serde = "1"
serde_json = "1"
serde_derive = "1"
sqlx = { version = "0.7", features = [ "sqlite", "mysql", "runtime-tokio-rustls" ] }
zeroize = "1"
lru = "0.12"

[dev-dependencies]
async-std = "1.12.0"
async-std = "1"

0 comments on commit ba46d1e

Please sign in to comment.