Don't unnecessarily constrain crate versions in Cargo.toml files

This commit is contained in:
Joakim Frostegård 2021-11-19 02:45:53 +01:00
parent de52d35357
commit 028a366ce5
12 changed files with 32 additions and 32 deletions

View file

@ -10,5 +10,5 @@ repository = "https://github.com/greatest-ape/aquatic"
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
simplelog = "0.10.0" simplelog = "0.10"
toml = "0.5" toml = "0.5"

View file

@ -17,7 +17,7 @@ cpu-pinning = ["hwloc", "libc"]
ahash = "0.7" ahash = "0.7"
anyhow = "1" anyhow = "1"
arc-swap = "1" arc-swap = "1"
hashbrown = "0.11.2" hashbrown = "0.11"
hex = "0.4" hex = "0.4"
indexmap-amortized = "1" indexmap-amortized = "1"
log = "0.4" log = "0.4"

View file

@ -42,5 +42,5 @@ slab = "0.4"
smartstring = "0.2" smartstring = "0.2"
[dev-dependencies] [dev-dependencies]
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"

View file

@ -18,7 +18,7 @@ aquatic_cli_helpers = "0.1.0"
aquatic_common = "0.1.0" aquatic_common = "0.1.0"
aquatic_http_protocol = "0.1.0" aquatic_http_protocol = "0.1.0"
futures-lite = "1" futures-lite = "1"
hashbrown = "0.11.2" hashbrown = "0.11"
glommio = { git = "https://github.com/DataDog/glommio.git", rev = "4e6b14772da2f4325271fbcf12d24cf91ed466e5" } glommio = { git = "https://github.com/DataDog/glommio.git", rev = "4e6b14772da2f4325271fbcf12d24cf91ed466e5" }
log = "0.4" log = "0.4"
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }
@ -28,5 +28,5 @@ rustls = { version = "0.20", features = ["dangerous_configuration"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
[dev-dependencies] [dev-dependencies]
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"

View file

@ -23,7 +23,7 @@ harness = false
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
hashbrown = "0.11.2" hashbrown = "0.11"
hex = { version = "0.4", default-features = false } hex = { version = "0.4", default-features = false }
httparse = "1" httparse = "1"
itoa = "0.4" itoa = "0.4"
@ -33,10 +33,10 @@ rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_bencode = "0.2" serde_bencode = "0.2"
smartstring = "0.2" smartstring = "0.2"
urlencoding = "2.1.0" urlencoding = "2"
[dev-dependencies] [dev-dependencies]
bendy = { version = "0.3", features = ["std", "serde"] } bendy = { version = "0.3", features = ["std", "serde"] }
criterion = "0.3" criterion = "0.3"
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"

View file

@ -33,8 +33,8 @@ rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
slab = "0.4" slab = "0.4"
signal-hook = { version = "0.3" } signal-hook = { version = "0.3" }
socket2 = { version = "0.4.1", features = ["all"] } socket2 = { version = "0.4", features = ["all"] }
[dev-dependencies] [dev-dependencies]
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"

View file

@ -15,7 +15,7 @@ aquatic_cli_helpers = "0.1.0"
aquatic_udp = "0.1.0" aquatic_udp = "0.1.0"
aquatic_udp_protocol = "0.1.0" aquatic_udp_protocol = "0.1.0"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
indicatif = "0.16.2" indicatif = "0.16"
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }
num-format = "0.4" num-format = "0.4"
rand = { version = "0.8", features = ["small_rng"] } rand = { version = "0.8", features = ["small_rng"] }

View file

@ -17,14 +17,14 @@ anyhow = "1"
aquatic_cli_helpers = "0.1.0" aquatic_cli_helpers = "0.1.0"
aquatic_common = "0.1.0" aquatic_common = "0.1.0"
aquatic_udp_protocol = "0.1.0" aquatic_udp_protocol = "0.1.0"
hashbrown = "0.11.2" hashbrown = "0.11"
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }
mio = { version = "0.7", features = ["udp", "os-poll", "os-util"] } mio = { version = "0.7", features = ["udp", "os-poll", "os-util"] }
rand = { version = "0.8", features = ["small_rng"] } rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4" rand_distr = "0.4"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
socket2 = { version = "0.4.1", features = ["all"] } socket2 = { version = "0.4", features = ["all"] }
[dev-dependencies] [dev-dependencies]
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"

View file

@ -12,5 +12,5 @@ byteorder = "1"
either = "1" either = "1"
[dev-dependencies] [dev-dependencies]
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"

View file

@ -28,7 +28,7 @@ aquatic_common = "0.1.0"
aquatic_ws_protocol = "0.1.0" aquatic_ws_protocol = "0.1.0"
cfg-if = "1" cfg-if = "1"
either = "1" either = "1"
hashbrown = { version = "0.11.2", features = ["serde"] } hashbrown = { version = "0.11", features = ["serde"] }
log = "0.4" log = "0.4"
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }
privdrop = "0.5" privdrop = "0.5"
@ -44,7 +44,7 @@ histogram = { version = "0.6", optional = true }
mio = { version = "0.7", features = ["tcp", "os-poll", "os-util"], optional = true } mio = { version = "0.7", features = ["tcp", "os-poll", "os-util"], optional = true }
native-tls = { version = "0.2", optional = true } native-tls = { version = "0.2", optional = true }
parking_lot = { version = "0.11", optional = true } parking_lot = { version = "0.11", optional = true }
socket2 = { version = "0.4.1", features = ["all"], optional = true } socket2 = { version = "0.4", features = ["all"], optional = true }
# glommio # glommio
async-tungstenite = { version = "0.15", optional = true } async-tungstenite = { version = "0.15", optional = true }
@ -55,5 +55,5 @@ glommio = { git = "https://github.com/DataDog/glommio.git", rev = "4e6b14772da2f
rustls-pemfile = { version = "0.2", optional = true } rustls-pemfile = { version = "0.2", optional = true }
[dev-dependencies] [dev-dependencies]
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"

View file

@ -21,7 +21,7 @@ aquatic_ws_protocol = "0.1.0"
futures = "0.3" futures = "0.3"
futures-rustls = "0.22" futures-rustls = "0.22"
glommio = { git = "https://github.com/DataDog/glommio.git", rev = "4e6b14772da2f4325271fbcf12d24cf91ed466e5" } glommio = { git = "https://github.com/DataDog/glommio.git", rev = "4e6b14772da2f4325271fbcf12d24cf91ed466e5" }
hashbrown = { version = "0.11.2", features = ["serde"] } hashbrown = { version = "0.11", features = ["serde"] }
mimalloc = { version = "0.1", default-features = false } mimalloc = { version = "0.1", default-features = false }
rand = { version = "0.8", features = ["small_rng"] } rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4" rand_distr = "0.4"
@ -31,5 +31,5 @@ serde_json = "1"
tungstenite = "0.15" tungstenite = "0.15"
[dev-dependencies] [dev-dependencies]
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"

View file

@ -18,13 +18,13 @@ harness = false
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
hashbrown = { version = "0.11.2", features = ["serde"] } hashbrown = { version = "0.11", features = ["serde"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
simd-json = { version = "0.4.7", features = ["allow-non-simd"] } simd-json = { version = "0.4", features = ["allow-non-simd"] }
tungstenite = "0.15" tungstenite = "0.15"
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"
quickcheck = "1.0" quickcheck = "1"
quickcheck_macros = "1.0" quickcheck_macros = "1"