Skip to content

Commit

Permalink
build: use major.minor for all deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-da committed Apr 5, 2024
1 parent eea86e0 commit 015e4db
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 83 deletions.
55 changes: 4 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

64 changes: 32 additions & 32 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,54 +7,54 @@ default-run = "neptune-core"
publish = false

[dependencies]
aead = "0"
aes-gcm = "0"
anyhow = "1"
arbitrary = { version = "1", features = ["derive"] }
aead = "0.5"
aes-gcm = "0.10"
anyhow = "1.0"
arbitrary = { version = "1.3", features = ["derive"] }
bech32 = "0.9"
bincode = "1"
bytes = "1"
bytesize = "1"
bincode = "1.3"
bytes = "1.6"
bytesize = "1.3"
chrono = "=0.4.34"
clap = { version = "4", features = ["derive"] }
clap_complete = "4.4.6"
console-subscriber = "0.2.0"
crossterm = "0"
directories = "5"
field_count = "0.1.1"
futures = "0"
get-size = { version = "0", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.4"
console-subscriber = "0.2"
crossterm = "0.27"
directories = "5.0"
field_count = "0.1"
futures = "0.3"
get-size = { version = "0.1", features = ["derive"] }
itertools = "0.11"
memmap2 = "0.9"
num-bigint = { version = "0", features = ["serde"] }
num-rational = "0"
num-traits = "0"
priority-queue = "1"
num-bigint = { version = "0.4", features = ["serde"] }
num-rational = "0.4"
num-traits = "0.2"
priority-queue = "1.4"
proptest = "1.4"
proptest-arbitrary-interop = "0.1"
rand = "0.8"
ratatui = "0.23"
regex = "1.10.3"
semver = "^1.0.21"
serde = { version = "1", features = ["derive"] }
serde_derive = "1"
serde_json = "1"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
strum = { version = "0.25", features = ["derive"] }
tarpc = { version = "^0.34", features = ["tokio1", "serde-transport", "serde-transport-json", "tcp"] }
tasm-lib = "0.2.1"
tiny-bip39 = "1.0.0"
tokio = { version = "1", features = ["full", "tracing"] }
tokio-serde = { version = "0", features = ["bincode", "json"] }
tokio-util = { version = "0", features = ["codec"] }
tracing = "0"
tracing-subscriber = { version = "0", features = [
tasm-lib = "0.2"
tiny-bip39 = "1.0"
tokio = { version = "1.37", features = ["full", "tracing"] }
tokio-serde = { version = "0.8", features = ["bincode", "json"] }
tokio-util = { version = "0.7", features = ["codec"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"std",
"env-filter",
"time",
"fmt",
] }
tracing-test = "0"
unicode-width = "0"
tracing-test = "0.2"
unicode-width = "0.1"
zeroize = "1.7.0"
rs-leveldb = "0.1.5"
leveldb-sys = "2.0.9"
Expand All @@ -64,7 +64,7 @@ async-stream = "0.3.5"
[dev-dependencies]
test-strategy = "0.3"
pin-project-lite = "0.2.13"
tokio-test = "0"
tokio-test = "0.4"
blake3 = "1.5.1"
divan = "0.1.14"

Expand Down

0 comments on commit 015e4db

Please sign in to comment.