Skip to content

Commit 881d069

Browse files
committed
bridge: Use only the tokio features we need
1 parent b1c1038 commit 881d069

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bridge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ serde = { version = "1.0.203", features = ["derive"] }
1717
serde_json = "1.0.117"
1818
svix-bridge-types = { path = "svix-bridge-types" }
1919
thiserror = "1.0.61"
20-
tokio = "1.38.0"
20+
tokio = { version = "1.38.0", features = ["macros", "time", "rt-multi-thread", "sync"] }
2121
tracing = "0.1.40"
2222
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2323
wiremock = "0.6.0"

bridge/svix-bridge-plugin-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ serde.workspace = true
99
serde_json.workspace = true
1010
svix-bridge-types.workspace = true
1111
thiserror.workspace = true
12-
tokio = { workspace = true, features = ["full"] }
12+
tokio.workspace = true
1313
tokio-executor-trait = "2.1"
1414
tokio-reactor-trait = "1.1"
1515
tracing = "0.1"

bridge/svix-bridge-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66

77
[dependencies]
88
async-trait = "0.1"
9-
tokio = { workspace = true, features = ["full"] }
9+
tokio.workspace = true
1010
serde.workspace = true
1111
serde_json.workspace = true
1212
svix = "1.17.0"

bridge/svix-bridge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ svix-ksuid = "0.7.0"
2121
svix-bridge-plugin-queue = { path = "../svix-bridge-plugin-queue" }
2222
svix-bridge-plugin-kafka = { optional = true, path = "../svix-bridge-plugin-kafka" }
2323
svix-bridge-types.workspace = true
24-
tokio = { workspace = true, features = ["full"] }
24+
tokio.workspace = true
2525
tracing.workspace = true
2626
tracing-opentelemetry = "0.23.0"
2727
tracing-subscriber = { workspace = true, features = ["fmt", "json"] }

0 commit comments

Comments
 (0)