diff --git a/Cargo.lock b/Cargo.lock index a6c96ff7..48d426b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -421,9 +421,9 @@ dependencies = [ [[package]] name = "bson" -version = "2.14.0" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af8113ff51309e2779e8785a246c10fb783e8c2452f134d6257fd71cc03ccd6c" +checksum = "74c1c1044eb5689370b9da714b543a4a8d15601f4a68538dcadcf9c41b916aff" dependencies = [ "ahash", "base64", @@ -435,9 +435,9 @@ dependencies = [ "js-sys", "once_cell", "rand 0.9.0", - "serde", "serde_bytes", - "serde_json", + "simdutf8", + "thiserror 2.0.17", "time", "uuid", ] @@ -4279,7 +4279,6 @@ version = "1.0.145" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" dependencies = [ - "indexmap 2.11.4", "itoa", "memchr", "ryu", @@ -4423,6 +4422,12 @@ dependencies = [ "quote", ] +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + [[package]] name = "similar" version = "2.5.0" diff --git a/modeling-cmds/Cargo.toml b/modeling-cmds/Cargo.toml index b2206eef..f76d6d7c 100644 --- a/modeling-cmds/Cargo.toml +++ b/modeling-cmds/Cargo.toml @@ -64,7 +64,7 @@ uuid = { version = "1.16.0", features = ["serde", "v4", "js"] } webrtc = { version = "0.12", optional = true } [dev-dependencies] -bson = "2.14.0" +bson = "3.0.0" dropshot = { version = "0.16.4", default-features = false } expectorate = "1.1.0" openapi-lint = { git = "https://github.com/KittyCAD/openapi-lint", branch = "kittycad" }