diff --git a/Cargo.lock b/Cargo.lock index 80738dfce..7cb18f144 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -786,9 +786,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.3" +version = "0.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9" +checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0" dependencies = [ "anstream", "anstyle", @@ -852,9 +852,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flatbuffers" -version = "24.3.25" +version = "24.12.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8add37afff2d4ffa83bc748a70b4b1370984f6980768554182424ef71447c35f" +checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096" dependencies = [ "bitflags 1.3.2", "rustc_version", @@ -2823,9 +2823,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.133" +version = "1.0.134" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" +checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d" dependencies = [ "itoa", "memchr", @@ -3507,12 +3507,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "unicase" -version = "2.7.0" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" -dependencies = [ - "version_check", -] +checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" [[package]] name = "unicode-bidi" diff --git a/crates/rayexec_bullet/Cargo.toml b/crates/rayexec_bullet/Cargo.toml index cc4d0088a..09c5c124f 100644 --- a/crates/rayexec_bullet/Cargo.toml +++ b/crates/rayexec_bullet/Cargo.toml @@ -14,6 +14,6 @@ csv-core = { version = "0.1.11", default-features = false } # Default features h chrono = "0.4.39" textwrap = { version = "0.16.1", default-features = false, features = ["unicode-width"] } serde = { workspace = true } -flatbuffers = "24.3.25" +flatbuffers = "24.12.23" bytes = { workspace = true } ahash = { workspace = true } diff --git a/crates/rayexec_parser/Cargo.toml b/crates/rayexec_parser/Cargo.toml index 09f79a9b6..f45ecc50c 100644 --- a/crates/rayexec_parser/Cargo.toml +++ b/crates/rayexec_parser/Cargo.toml @@ -6,7 +6,7 @@ edition = { workspace = true } [dependencies] rayexec_error = { path = '../rayexec_error' } rayexec_proto = { path = '../rayexec_proto' } -unicase = "2.7.0" +unicase = "2.8.1" tracing = { workspace = true } serde = { workspace = true } diff --git a/crates/rayexec_slt/Cargo.toml b/crates/rayexec_slt/Cargo.toml index 728e3cf0b..da6b4c0b9 100644 --- a/crates/rayexec_slt/Cargo.toml +++ b/crates/rayexec_slt/Cargo.toml @@ -12,7 +12,7 @@ rayexec_rt_native = { path = '../rayexec_rt_native' } rayexec_shell = { path = '../rayexec_shell' } libtest-mimic = "0.7.3" sqllogictest = "0.20.4" -env_logger = "0.11.3" +env_logger = "0.11.6" futures = { workspace = true, features = ["executor"] } async-trait = "0.1.80" tokio = { version = "1", features = ["full"] }