Skip to content

Commit 8723997

Browse files
committed
Use workspace dependencies.
1 parent 03066d8 commit 8723997

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ members = [
88
"web-transport-ws",
99
]
1010
resolver = "2"
11+
12+
[workspace.dependencies]
13+
web-transport-trait = { path = "web-transport-trait", version = "0.1" }
14+
web-transport-proto = { path = "web-transport-proto", version = "0.2" }

web-transport-quinn/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ tokio = { version = "1", default-features = false, features = [
4343
"macros",
4444
] }
4545
url = "2"
46-
web-transport-proto = { path = "../web-transport-proto", version = "0.2" }
47-
web-transport-trait = { path = "../web-transport-trait", version = "0.1" }
46+
web-transport-proto = { workspace = true }
47+
web-transport-trait = { workspace = true }
4848

4949
[dev-dependencies]
5050
anyhow = "1"

web-transport-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ url = "2"
2424
wasm-bindgen = "0.2"
2525
wasm-bindgen-futures = "0.4"
2626
web-streams = "0.1.2"
27-
web-transport-trait = { path = "../web-transport-trait" }
27+
web-transport-trait = { workspace = true }
2828

2929
[dependencies.web-sys]
3030
version = "0.3.76"

web-transport-ws/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ futures = "0.3"
1717
thiserror = "2"
1818
tokio = { version = "1", features = ["sync", "time", "macros", "rt"] }
1919
tokio-tungstenite = "0.24"
20-
web-transport-proto = { path = "../web-transport-proto", version = "0.2" }
21-
web-transport-trait = { path = "../web-transport-trait", version = "0.1" }
20+
web-transport-proto = { workspace = true }
21+
web-transport-trait = { workspace = true }
2222

2323
[dev-dependencies]
2424
anyhow = "1"

0 commit comments

Comments
 (0)