Skip to content

Commit 326a5b5

Browse files
committed
Clean up some unused dependencies
Signed-off-by: Lann Martin <lann.martin@fermyon.com>
1 parent f1756ae commit 326a5b5

File tree

13 files changed

+2
-76
lines changed

13 files changed

+2
-76
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ tempfile = "3.3.0"
4444
tokio = { version = "1.11", features = [ "full" ] }
4545
toml = "0.5"
4646
tracing = { version = "0.1", features = [ "log" ] }
47-
tracing-futures = "0.2"
4847
tracing-subscriber = { version = "0.3.7", features = [ "env-filter" ] }
4948
url = "2.2.2"
5049
uuid = "^1.0"

crates/build/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ authors = [ "Fermyon Engineering <engineering@fermyon.com>" ]
88
anyhow = "1.0.57"
99
futures = "0.3.21"
1010
path-absolutize = "3.0.11"
11-
tokio = { version = "1.11", features = [ "full" ] }
1211
spin-loader = { path = "../loader" }
1312
subprocess = "0.2.8"
1413
tracing = { version = "0.1", features = [ "log" ] }

crates/config/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@ authors = [ "Fermyon Engineering <engineering@fermyon.com>" ]
77
[dependencies]
88
anyhow = "1.0"
99
async-trait = "0.1"
10-
serde = { version = "1.0", features = [ "derive" ] }
1110
spin-engine = { path = "../engine" }
1211
spin-manifest = { path = "../manifest" }
1312
thiserror = "1"
14-
tokio = { version = "1", features = [ "rt-multi-thread" ] }
1513

1614
[dependencies.wit-bindgen-wasmtime]
1715
git = "https://github.com/bytecodealliance/wit-bindgen"
1816
rev = "cb871cfa1ee460b51eb1d144b175b9aab9c50aba"
1917
features = ["async"]
2018

2119
[dev-dependencies]
20+
tokio = { version = "1", features = [ "rt-multi-thread" ] }
2221
toml = "0.5"

crates/engine/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ spin-manifest = { path = "../manifest" }
1313
tempfile = "3.3.0"
1414
tokio = { version = "1.10.0", features = [ "full" ] }
1515
tracing = { version = "0.1", features = [ "log" ] }
16-
tracing-futures = "0.2"
1716
wasi-cap-std-sync = "0.39.1"
1817
wasi-common = "0.39.1"
1918
wasmtime = { version = "0.39.1", features = [ "async" ] }

crates/http/Cargo.toml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,13 @@ doctest = false
1010
[dependencies]
1111
anyhow = "1.0"
1212
async-trait = "0.1"
13-
atty = "0.2"
14-
bytes = "1.1"
15-
cap-std = "0.24.1"
1613
clap = "3"
1714
futures = "0.3"
1815
futures-util = "0.3.8"
1916
http = "0.2"
2017
hyper = { version = "0.14", features = ["full"] }
21-
hyper-rustls = { version = "0.23.0" }
2218
indexmap = "1"
2319
percent-encoding = "2"
24-
serde = { version = "1.0", features = ["derive"] }
2520
spin-manifest = { path = "../manifest" }
2621
spin-engine = { path = "../engine" }
2722
spin-trigger = { path = "../trigger" }
@@ -34,13 +29,8 @@ tokio = { version = "1.10", features = ["full"] }
3429
tokio-rustls = { version = "0.23.2" }
3530
rustls-pemfile = "0.3.0"
3631
tracing = { version = "0.1", features = ["log"] }
37-
tracing-futures = "0.2"
38-
tracing-subscriber = { version = "0.3.7", features = ["env-filter"] }
39-
url = "2.2"
40-
wasi-cap-std-sync = "0.39.1"
4132
wasi-common = "0.39.1"
4233
wasmtime = { version = "0.39.1", features = ["async"] }
43-
wasmtime-wasi = "0.39.1"
4434

4535
[dependencies.wit-bindgen-wasmtime]
4636
git = "https://github.com/bytecodealliance/wit-bindgen"

crates/loader/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ anyhow = "1"
99
async-trait = "0.1.52"
1010
bindle = { git = "https://github.com/fermyon/bindle", tag = "v0.8.1", default-features = false, features = ["client"] }
1111
bytes = "1.1.0"
12-
dirs = "4.0"
13-
fs_extra = "1.2.0"
1412
futures = "0.3.17"
1513
glob = "0.3.0"
1614
itertools = "0.10.3"
@@ -28,6 +26,4 @@ tokio = { version = "1.11", features = [ "full" ] }
2826
tokio-util = "0.6"
2927
toml = "0.5"
3028
tracing = { version = "0.1", features = [ "log" ] }
31-
tracing-futures = "0.2"
32-
tracing-subscriber = { version = "0.3.7", features = [ "env-filter" ] }
3329
walkdir = "2.3.2"

crates/outbound-http/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ reqwest = { version = "0.11", default-features = true, features = [ "json", "blo
1616
spin-engine = { path = "../engine" }
1717
spin-manifest = { path = "../manifest" }
1818
tracing = { version = "0.1", features = [ "log" ] }
19-
tracing-futures = "0.2"
2019
url = "2.2.1"
2120

2221
[dependencies.wit-bindgen-wasmtime]

crates/outbound-pg/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ anyhow = "1.0"
1111
postgres = { version = "0.19.3" }
1212
spin-engine = { path = "../engine" }
1313
spin-manifest = { path = "../manifest" }
14-
tokio = { version = "1", features = [ "rt" ] }
1514
tracing = { version = "0.1", features = [ "log" ] }
1615

1716
[dependencies.wit-bindgen-wasmtime]

crates/outbound-redis/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ redis = { version = "0.21", features = [ "tokio-comp" ] }
1313
spin-engine = { path = "../engine" }
1414
spin-manifest = { path = "../manifest" }
1515
tracing = { version = "0.1", features = [ "log" ] }
16-
tracing-futures = "0.2"
1716

1817
[dependencies.wit-bindgen-wasmtime]
1918
git = "https://github.com/bytecodealliance/wit-bindgen"

0 commit comments

Comments
 (0)