From c5b0e65bfac3919a62eb4baef38641ab530dee86 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 13 Mar 2025 16:02:46 -0400 Subject: [PATCH] dep stuff --- Cargo.lock | 27 ++++++++++----------------- Cargo.toml | 7 +++---- 2 files changed, 13 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c7c08be..fbd6c34 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -109,18 +109,18 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.31" +version = "4.5.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767" +checksum = "6088f3ae8c3608d19260cd7445411865a485688711b78b5be70d78cd96136f83" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.5.31" +version = "4.5.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863" +checksum = "22a7ef7f676155edfb82daa97f99441f3ebf4a58d5e32f295a56259f1b6facc8" dependencies = [ "anstyle", "clap_lex", @@ -145,12 +145,6 @@ dependencies = [ "windows-sys", ] -[[package]] -name = "const_fn" -version = "0.4.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f8a2ca5ac02d09563609681103aada9e1777d54fc57a5acd7a41404f9c93b6e" - [[package]] name = "criterion" version = "0.5.1" @@ -329,9 +323,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.170" +version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] name = "log" @@ -432,9 +426,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "once_cell" -version = "1.20.3" +version = "1.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e" +checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc" [[package]] name = "oorandom" @@ -449,7 +443,6 @@ dependencies = [ "allocative", "arrayvec", "console", - "const_fn", "criterion", "crossbeam-channel", "either", @@ -516,9 +509,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.39" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1f1914ce909e1658d9907913b4b91947430c7d9be598b15a1912935b8c04801" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" dependencies = [ "proc-macro2", ] diff --git a/Cargo.toml b/Cargo.toml index 5674cff..28d2a98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,18 +22,17 @@ inherits = "release" debug = true [dependencies] -allocative = "0.3.4" +allocative = "0.3" arrayvec = "0.7" console = "0.15" -const_fn = "0.4" crossbeam-channel = "0.5" either = "1.13" indicatif = { version = "0.17", features = [ "rayon" ] } nohash-hasher = "0.2" num = "0.4" rand = "0.9" -rayon = "1.10.0" -skillratings = "0.27.1" +rayon = "1.10" +skillratings = "0.27" static_assertions = "1.1" [dev-dependencies]