diff --git a/Cargo.lock b/Cargo.lock index 424220e0..983dbaee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1305,7 +1305,7 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" [[package]] name = "convex" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "async-trait", @@ -1426,7 +1426,7 @@ dependencies = [ [[package]] name = "convex_sync_types" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "base64 0.13.1", diff --git a/crates/convex/CHANGELOG.md b/crates/convex/CHANGELOG.md index 290101c9..b818adf3 100644 --- a/crates/convex/CHANGELOG.md +++ b/crates/convex/CHANGELOG.md @@ -1,5 +1,10 @@ # Upcoming +# 0.8.1 + +Remove native-tls-vendored dependency for tokio-tungstenite. Rely on requested +features instead. + # 0.8.0 - Support for passing through a client_id to ConvexClient diff --git a/crates/convex/Cargo.oss.toml b/crates/convex/Cargo.oss.toml index fae00e22..cfaebee0 100644 --- a/crates/convex/Cargo.oss.toml +++ b/crates/convex/Cargo.oss.toml @@ -2,7 +2,7 @@ name = "convex" description = "Client library for Convex (convex.dev)" authors = [ "Convex, Inc. " ] -version = "0.8.0" +version = "0.8.1" edition = "2021" rust-version = "1.65.0" resolver = "2" @@ -15,7 +15,7 @@ anyhow = { version = "1" } async-trait = { version = "0.1" } base64 = { version = "0.13" } bytes = { version = "1.1.0" } -convex_sync_types = { path = "./sync_types", version = "=0.8.0" } +convex_sync_types = { path = "./sync_types", version = "=0.8.1" } futures = { version = "0.3" } imbl = { version = "3.0.0" } parking_lot = { optional = true, version = "0.12", features = [ "hardware-lock-elision" ] } @@ -26,14 +26,14 @@ serde_json = { features = [ "float_roundtrip", "preserve_order" ], version = "1" thiserror = { version = "1" } tokio = { features = [ "full" ], version = "1" } tokio-stream = { features = [ "io-util", "sync" ], version = "0.1" } -tokio-tungstenite = { version = "0.21.0", features = [ "native-tls-vendored" ] } +tokio-tungstenite = { features = [], version = "0.21.0" } tracing = { version = "0.1" } url = { version = "2.5.2" } uuid = { features = [ "serde", "v4" ], version = "1.6" } [dev-dependencies] colored = { version = "2" } -convex_sync_types = { path = "./sync_types", version = "=0.8.0", features = [ "testing" ] } +convex_sync_types = { path = "./sync_types", version = "=0.8.1", features = [ "testing" ] } dotenvy = { version = "0.15.7" } maplit = { version = "1" } parking_lot = { version = "0.12", features = [ "hardware-lock-elision" ] } diff --git a/crates/convex/Cargo.toml b/crates/convex/Cargo.toml index ba7c8bee..912063a6 100644 --- a/crates/convex/Cargo.toml +++ b/crates/convex/Cargo.toml @@ -2,7 +2,7 @@ name = "convex" description = "Client library for Convex (convex.dev)" authors = ["Convex, Inc. "] -version = "0.8.0" +version = "0.8.1" edition = "2021" rust-version = "1.65.0" resolver = "2" @@ -15,7 +15,7 @@ anyhow = { workspace = true } async-trait = { workspace = true } base64 = { workspace = true } bytes = { workspace = true } -convex_sync_types = { path = "./sync_types", version = "=0.8.0" } +convex_sync_types = { path = "./sync_types", version = "=0.8.1" } futures = { workspace = true } imbl = { workspace = true } parking_lot = { workspace = true, optional = true } @@ -29,14 +29,14 @@ serde_json = { workspace = true, features = [ thiserror = { workspace = true } tokio = { workspace = true, features = ["full"] } tokio-stream = { workspace = true, features = ["io-util", "sync"] } -tokio-tungstenite = { workspace = true } +tokio-tungstenite = { workspace = true, features = [] } tracing = { workspace = true } url = { workspace = true } uuid = { workspace = true, features = ["serde", "v4"] } [dev-dependencies] colored = { workspace = true } -convex_sync_types = { path = "./sync_types", version = "=0.8.0", features = [ +convex_sync_types = { path = "./sync_types", version = "=0.8.1", features = [ "testing", ] } dotenvy = { workspace = true } diff --git a/crates/convex/sync_types/Cargo.oss.toml b/crates/convex/sync_types/Cargo.oss.toml index 6b1b27e9..45a65c24 100644 --- a/crates/convex/sync_types/Cargo.oss.toml +++ b/crates/convex/sync_types/Cargo.oss.toml @@ -1,7 +1,7 @@ [package] name = "convex_sync_types" description = "Sync types for the Convex Websocket protocol (convex.dev)" -version = "0.8.0" +version = "0.8.1" authors = [ "Convex, Inc. " ] edition = "2021" rust-version = "1.65.0" diff --git a/crates/convex/sync_types/Cargo.toml b/crates/convex/sync_types/Cargo.toml index 90817a69..854d252e 100644 --- a/crates/convex/sync_types/Cargo.toml +++ b/crates/convex/sync_types/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "convex_sync_types" description = "Sync types for the Convex Websocket protocol (convex.dev)" -version = "0.8.0" +version = "0.8.1" authors = ["Convex, Inc. "] edition = "2021" rust-version = "1.65.0"