diff --git a/Cargo.lock b/Cargo.lock index f77ce10e..14a479bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5498,13 +5498,13 @@ dependencies = [ [[package]] name = "proptest-derive" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cf16337405ca084e9c78985114633b6827711d22b9e6ef6c6c0d665eb3f0b6e" +checksum = "6ff7ff745a347b87471d859a377a9a404361e7efc2a971d73424a6d183c0fc77" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.60", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 39938672..86673fd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ pretty_assertions = "1" prometheus = { git = "https://github.com/get-convex/rust-prometheus", rev = "061619b6e44ca7f3b94d97346152cab319895929" } prometheus-hyper = "0.2.0" proptest = "1" -proptest-derive = "0.4.0" +proptest-derive = "0.5.0" proptest-http = { git = "https://github.com/nipunn1313/proptest-http", rev = "0e658bd4f6dbb73bdd3be66f0d2c34c00cc3a446" } prost = "0.13" prost-types = "0.13" diff --git a/crates/common/src/schemas/mod.rs b/crates/common/src/schemas/mod.rs index 888627f7..ddf66579 100644 --- a/crates/common/src/schemas/mod.rs +++ b/crates/common/src/schemas/mod.rs @@ -730,7 +730,7 @@ impl VectorIndexSchema { #[cfg_attr(any(test, feature = "testing"), derive(proptest_derive::Arbitrary))] #[cfg_attr( any(test, feature = "testing"), - proptest(params = "BTreeSet",) + proptest(params = "BTreeSet") )] pub enum DocumentSchema { Any, diff --git a/crates/convex/Cargo.oss.toml b/crates/convex/Cargo.oss.toml index 362baf93..bb348e90 100644 --- a/crates/convex/Cargo.oss.toml +++ b/crates/convex/Cargo.oss.toml @@ -20,7 +20,7 @@ futures = { version = "0.3" } imbl = { version = "3.0.0" } parking_lot = { optional = true, version = "0.12", features = [ "hardware-lock-elision" ] } proptest = { optional = true, version = "1" } -proptest-derive = { optional = true, version = "0.4.0" } +proptest-derive = { optional = true, version = "0.5.0" } rand = { version = "0.8" } serde_json = { features = [ "float_roundtrip", "preserve_order" ], version = "1" } thiserror = { version = "1" } @@ -39,7 +39,7 @@ maplit = { version = "1" } parking_lot = { version = "0.12", features = [ "hardware-lock-elision" ] } pretty_assertions = { version = "1" } proptest = { version = "1" } -proptest-derive = { version = "0.4.0" } +proptest-derive = { version = "0.5.0" } tracing-subscriber = { features = [ "env-filter" ], version = "0.3.17" } [features] diff --git a/crates/convex/sync_types/Cargo.oss.toml b/crates/convex/sync_types/Cargo.oss.toml index a334544e..6d1ad995 100644 --- a/crates/convex/sync_types/Cargo.oss.toml +++ b/crates/convex/sync_types/Cargo.oss.toml @@ -16,7 +16,7 @@ base64 = { version = "0.13" } derive_more = { version = "0.99" } headers = { version = "0.4" } proptest = { optional = true, version = "1" } -proptest-derive = { optional = true, version = "0.4.0" } +proptest-derive = { optional = true, version = "0.5.0" } rand = { version = "0.8" } serde = { features = [ "derive" ], version = "1" } serde_json = { features = [ "float_roundtrip", "preserve_order" ], version = "1" } @@ -24,7 +24,7 @@ uuid = { features = [ "serde", "v4" ], version = "1.6" } [dev-dependencies] proptest = { version = "1" } -proptest-derive = { version = "0.4.0" } +proptest-derive = { version = "0.5.0" } [features] testing = [ "proptest", "proptest-derive" ]