diff --git a/aquatic_cli_helpers/Cargo.toml b/aquatic_cli_helpers/Cargo.toml index 20886f2..2ea0f5f 100644 --- a/aquatic_cli_helpers/Cargo.toml +++ b/aquatic_cli_helpers/Cargo.toml @@ -10,5 +10,5 @@ repository = "https://github.com/greatest-ape/aquatic" [dependencies] anyhow = "1" serde = { version = "1", features = ["derive"] } -simplelog = "0.10.0" +simplelog = "0.10" toml = "0.5" diff --git a/aquatic_common/Cargo.toml b/aquatic_common/Cargo.toml index 951b65f..b6dc1e6 100644 --- a/aquatic_common/Cargo.toml +++ b/aquatic_common/Cargo.toml @@ -17,7 +17,7 @@ cpu-pinning = ["hwloc", "libc"] ahash = "0.7" anyhow = "1" arc-swap = "1" -hashbrown = "0.11.2" +hashbrown = "0.11" hex = "0.4" indexmap-amortized = "1" log = "0.4" diff --git a/aquatic_http/Cargo.toml b/aquatic_http/Cargo.toml index 9bc4238..73aff34 100644 --- a/aquatic_http/Cargo.toml +++ b/aquatic_http/Cargo.toml @@ -42,5 +42,5 @@ slab = "0.4" smartstring = "0.2" [dev-dependencies] -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1" diff --git a/aquatic_http_load_test/Cargo.toml b/aquatic_http_load_test/Cargo.toml index 889de16..7dd0d5c 100644 --- a/aquatic_http_load_test/Cargo.toml +++ b/aquatic_http_load_test/Cargo.toml @@ -18,7 +18,7 @@ aquatic_cli_helpers = "0.1.0" aquatic_common = "0.1.0" aquatic_http_protocol = "0.1.0" futures-lite = "1" -hashbrown = "0.11.2" +hashbrown = "0.11" glommio = { git = "https://github.com/DataDog/glommio.git", rev = "4e6b14772da2f4325271fbcf12d24cf91ed466e5" } log = "0.4" mimalloc = { version = "0.1", default-features = false } @@ -28,5 +28,5 @@ rustls = { version = "0.20", features = ["dangerous_configuration"] } serde = { version = "1", features = ["derive"] } [dev-dependencies] -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1" diff --git a/aquatic_http_protocol/Cargo.toml b/aquatic_http_protocol/Cargo.toml index 6d43207..7343913 100644 --- a/aquatic_http_protocol/Cargo.toml +++ b/aquatic_http_protocol/Cargo.toml @@ -23,7 +23,7 @@ harness = false [dependencies] anyhow = "1" -hashbrown = "0.11.2" +hashbrown = "0.11" hex = { version = "0.4", default-features = false } httparse = "1" itoa = "0.4" @@ -33,10 +33,10 @@ rand = { version = "0.8", features = ["small_rng"] } serde = { version = "1", features = ["derive"] } serde_bencode = "0.2" smartstring = "0.2" -urlencoding = "2.1.0" +urlencoding = "2" [dev-dependencies] bendy = { version = "0.3", features = ["std", "serde"] } criterion = "0.3" -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1" diff --git a/aquatic_udp/Cargo.toml b/aquatic_udp/Cargo.toml index ef91567..0df4bae 100644 --- a/aquatic_udp/Cargo.toml +++ b/aquatic_udp/Cargo.toml @@ -33,8 +33,8 @@ rand = { version = "0.8", features = ["small_rng"] } serde = { version = "1", features = ["derive"] } slab = "0.4" signal-hook = { version = "0.3" } -socket2 = { version = "0.4.1", features = ["all"] } +socket2 = { version = "0.4", features = ["all"] } [dev-dependencies] -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1" diff --git a/aquatic_udp_bench/Cargo.toml b/aquatic_udp_bench/Cargo.toml index e2950df..48a48d0 100644 --- a/aquatic_udp_bench/Cargo.toml +++ b/aquatic_udp_bench/Cargo.toml @@ -15,7 +15,7 @@ aquatic_cli_helpers = "0.1.0" aquatic_udp = "0.1.0" aquatic_udp_protocol = "0.1.0" crossbeam-channel = "0.5" -indicatif = "0.16.2" +indicatif = "0.16" mimalloc = { version = "0.1", default-features = false } num-format = "0.4" rand = { version = "0.8", features = ["small_rng"] } diff --git a/aquatic_udp_load_test/Cargo.toml b/aquatic_udp_load_test/Cargo.toml index 52d39fa..b31850e 100644 --- a/aquatic_udp_load_test/Cargo.toml +++ b/aquatic_udp_load_test/Cargo.toml @@ -17,14 +17,14 @@ anyhow = "1" aquatic_cli_helpers = "0.1.0" aquatic_common = "0.1.0" aquatic_udp_protocol = "0.1.0" -hashbrown = "0.11.2" +hashbrown = "0.11" mimalloc = { version = "0.1", default-features = false } mio = { version = "0.7", features = ["udp", "os-poll", "os-util"] } rand = { version = "0.8", features = ["small_rng"] } rand_distr = "0.4" serde = { version = "1", features = ["derive"] } -socket2 = { version = "0.4.1", features = ["all"] } +socket2 = { version = "0.4", features = ["all"] } [dev-dependencies] -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1" diff --git a/aquatic_udp_protocol/Cargo.toml b/aquatic_udp_protocol/Cargo.toml index 3cf3f43..46c8f26 100644 --- a/aquatic_udp_protocol/Cargo.toml +++ b/aquatic_udp_protocol/Cargo.toml @@ -12,5 +12,5 @@ byteorder = "1" either = "1" [dev-dependencies] -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1" diff --git a/aquatic_ws/Cargo.toml b/aquatic_ws/Cargo.toml index 2fc27cf..e836dcb 100644 --- a/aquatic_ws/Cargo.toml +++ b/aquatic_ws/Cargo.toml @@ -28,7 +28,7 @@ aquatic_common = "0.1.0" aquatic_ws_protocol = "0.1.0" cfg-if = "1" either = "1" -hashbrown = { version = "0.11.2", features = ["serde"] } +hashbrown = { version = "0.11", features = ["serde"] } log = "0.4" mimalloc = { version = "0.1", default-features = false } 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 } native-tls = { version = "0.2", 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 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 } [dev-dependencies] -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1" diff --git a/aquatic_ws_load_test/Cargo.toml b/aquatic_ws_load_test/Cargo.toml index e752b9f..700b425 100644 --- a/aquatic_ws_load_test/Cargo.toml +++ b/aquatic_ws_load_test/Cargo.toml @@ -21,7 +21,7 @@ aquatic_ws_protocol = "0.1.0" futures = "0.3" futures-rustls = "0.22" 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 } rand = { version = "0.8", features = ["small_rng"] } rand_distr = "0.4" @@ -31,5 +31,5 @@ serde_json = "1" tungstenite = "0.15" [dev-dependencies] -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1" diff --git a/aquatic_ws_protocol/Cargo.toml b/aquatic_ws_protocol/Cargo.toml index 1830725..b1ec8af 100644 --- a/aquatic_ws_protocol/Cargo.toml +++ b/aquatic_ws_protocol/Cargo.toml @@ -18,13 +18,13 @@ harness = false [dependencies] anyhow = "1" -hashbrown = { version = "0.11.2", features = ["serde"] } +hashbrown = { version = "0.11", features = ["serde"] } serde = { version = "1", features = ["derive"] } 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" [dev-dependencies] criterion = "0.3" -quickcheck = "1.0" -quickcheck_macros = "1.0" +quickcheck = "1" +quickcheck_macros = "1"