diff --git a/Cargo.lock b/Cargo.lock index 31f888f4a8..866876b809 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1445,17 +1445,17 @@ dependencies = [ [[package]] name = "bson" -version = "2.6.1" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aeb8bae494e49dbc330dd23cf78f6f7accee22f640ce3ab17841badaa4ce232" +checksum = "58da0ae1e701ea752cc46c1bb9f39d5ecefc7395c3ecd526261a566d4f16e0c2" dependencies = [ - "ahash 0.7.6", + "ahash 0.8.3", "base64 0.13.1", "bitvec 1.0.1", "hex", "indexmap 1.9.2", "js-sys", - "lazy_static", + "once_cell", "rand 0.8.5", "serde", "serde_bytes", diff --git a/dozer-ingestion/Cargo.toml b/dozer-ingestion/Cargo.toml index aec41fd06c..45dfe81ddd 100644 --- a/dozer-ingestion/Cargo.toml +++ b/dozer-ingestion/Cargo.toml @@ -39,7 +39,7 @@ tower-http = {version = "0.3.5", features = ["full"]} prost = "0.11.8" prost-reflect = { version = "0.10.2", features = ["serde", "text-format"] } deltalake = { version = "0.13.0", default-features = false, features = ["s3", "datafusion"] } -bson = "2.5.0" +bson = "2.7.0" uuid = { version = "1.3.1", features = ["serde", "v4"] } rustls = { version = "0.21.7", features = ["dangerous_configuration"] } tokio-postgres-rustls = "0.10.0" diff --git a/dozer-tests/Cargo.toml b/dozer-tests/Cargo.toml index 1b551e6787..b1c3f1ead1 100644 --- a/dozer-tests/Cargo.toml +++ b/dozer-tests/Cargo.toml @@ -28,7 +28,7 @@ dozer-tracing = { path = "../dozer-tracing" } reqwest = { version = "0.11.14", features = ["json", "rustls-tls"], default-features = false } tokio = { version = "1.25.0", features = ["full", "rt"] } -bson = { version = "2.5.0", optional = true } +bson = { version = "2.7.0", optional = true } mongodb = { version = "2.6.1", optional = true } futures = { version = "0.3.26", optional = true } env_logger = "0.10.0"