diff --git a/Cargo.toml b/Cargo.toml index ef5b341..c0c9bad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,13 +14,19 @@ members = [ ] [workspace.package] -version = "1.1.0" +version = "1.1.1" authors = ["Swim Inc. developers info@swim.ai"] edition = "2021" categories = ["network-programming", "asynchronous", "web-programming::websocket"] license = "Apache-2.0" [workspace.dependencies] +ratchet = { package = "ratchet_rs", version = "1.1.1", path = "ratchet_rs" } +ratchet_core = { version = "1.1.1", path = "ratchet_core" } +ratchet_ext = { version = "1.1.1", path = "ratchet_ext" } +ratchet_deflate = { version = "1.1.1", path = "ratchet_deflate" } +ratchet_fixture = { version = "1.1.1", path = "ratchet_fixture" } + url = "2.1.1" http = "1.1.0" tokio = "1.22" diff --git a/ratchet_core/Cargo.toml b/ratchet_core/Cargo.toml index e66e1bc..fef225e 100644 --- a/ratchet_core/Cargo.toml +++ b/ratchet_core/Cargo.toml @@ -16,7 +16,7 @@ split = ["futures"] fixture = [] [dependencies] -ratchet_ext = { version = "1.0.3", path = "../ratchet_ext" } +ratchet_ext = { workspace = true } url = { workspace = true } http = { workspace = true } tokio = { workspace = true, features = ["rt", "net", "io-util"] } diff --git a/ratchet_deflate/Cargo.toml b/ratchet_deflate/Cargo.toml index 99c47e6..b978f8a 100644 --- a/ratchet_deflate/Cargo.toml +++ b/ratchet_deflate/Cargo.toml @@ -10,7 +10,7 @@ license.workspace = true categories.workspace = true [dependencies] -ratchet_ext = { version = "1.0.3", path = "../ratchet_ext" } +ratchet_ext = { workspace = true } thiserror = { workspace = true } http = { workspace = true } bytes = { workspace = true } diff --git a/ratchet_fixture/Cargo.toml b/ratchet_fixture/Cargo.toml index ad7dbf1..f7ce302 100644 --- a/ratchet_fixture/Cargo.toml +++ b/ratchet_fixture/Cargo.toml @@ -10,7 +10,7 @@ license.workspace = true categories.workspace = true [dependencies] -ratchet = { package = "ratchet_rs", version = "1.0.3", path = "../ratchet_rs", features = ["split", "deflate", "fixture"] } +ratchet = { workspace = true, features = ["split", "deflate", "fixture"] } tokio = { workspace = true, features = ["io-util"] } bytes = { workspace = true } futures = { workspace = true } diff --git a/ratchet_rs/Cargo.toml b/ratchet_rs/Cargo.toml index dd198e3..da0d324 100644 --- a/ratchet_rs/Cargo.toml +++ b/ratchet_rs/Cargo.toml @@ -17,9 +17,9 @@ split = ["ratchet_core/split"] fixture = ["ratchet_core/fixture"] [dependencies] -ratchet_core = { version = "1.0.3", path = "../ratchet_core" } -ratchet_ext = { version = "1.0.3", path = "../ratchet_ext" } -ratchet_deflate = { version = "1.0.3", path = "../ratchet_deflate", optional = true } +ratchet_core = { workspace = true } +ratchet_ext = { workspace = true } +ratchet_deflate = { workspace = true, optional = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } log = { workspace = true }