Skip to content

Commit 47e4593

Browse files
committed
Removed unused dependencies and moved tokio to dev-dependency
Signed-off-by: Jiaxiao (mossaka) Zhou <[email protected]>
1 parent eac30f6 commit 47e4593

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

Cargo.lock

Lines changed: 0 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

containerd-shim-spin/Cargo.toml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ Containerd shim for running Spin workloads.
1212

1313
[dependencies]
1414
containerd-shim-wasm = { version = "1.0.0-rc.1", default-features = false, features = ["opentelemetry"]}
15-
http = "1"
1615
log = "0.4"
1716
spin-app = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
18-
spin-core = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
1917
spin-componentize = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
2018
# Enable loading components precompiled by the shim
2119
spin-trigger = { git = "https://github.com/spinframework/spin", tag = "v3.2.0", features = [
@@ -26,22 +24,13 @@ spin-trigger-redis = { git = "https://github.com/spinframework/spin", tag = "v3.
2624
trigger-mqtt = { git = "https://github.com/spinframework/spin-trigger-mqtt", tag = "v0.4.0" }
2725
trigger-sqs = { git = "https://github.com/spinframework/spin-trigger-sqs", tag = "v0.9.0" }
2826
trigger-command = { git = "https://github.com/spinframework/spin-trigger-command", tag = "v0.3.0" }
29-
spin-manifest = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
3027
spin-loader = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
3128
spin-oci = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
32-
spin-common = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
33-
spin-expressions = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
34-
spin-factors-executor = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
3529
spin-telemetry = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
3630
spin-runtime-factors = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
37-
spin-factors = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
3831
spin-factor-outbound-networking = { git = "https://github.com/spinframework/spin", tag = "v3.2.0" }
3932
wasmtime = "29.0.1"
40-
tokio = { version = "1", features = ["rt"] }
4133
openssl = { version = "*", features = ["vendored"] }
42-
serde = "1.0"
43-
serde_json = "1.0"
44-
url = "2.5"
4534
anyhow = "1.0"
4635
oci-spec = "0.7"
4736
futures = "0.3"
@@ -52,3 +41,4 @@ wat = "1"
5241
temp-env = "0.3.6"
5342
toml = "0.8"
5443
tempfile = "3"
44+
tokio = { version = "1", features = ["rt"] }

0 commit comments

Comments
 (0)