Skip to content

Commit cd76971

Browse files
Merge pull request #2871 from Mossaka/remove-deps
all: remove unused deps
2 parents f80e5ce + 6b76495 commit cd76971

File tree

38 files changed

+1
-230
lines changed

38 files changed

+1
-230
lines changed

Cargo.lock

Lines changed: 1 addition & 129 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 & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,20 @@ rust-version = "1.79"
1818
anyhow = { workspace = true }
1919
async-trait = { workspace = true }
2020
bytes = { workspace = true }
21-
chrono = "0.4"
2221
clap = { version = "3.2.24", features = ["derive", "env"] }
2322
clearscreen = "3"
2423
comfy-table = "7"
2524
command-group = "2"
2625
ctrlc = { version = "3.4", features = ["termination"] }
2726
dialoguer = "0.11"
28-
dirs = { workspace = true }
2927
futures = { workspace = true }
30-
glob = { workspace = true }
3128
http = { workspace = true }
3229
indicatif = "0.17"
33-
is-terminal = "0.4"
3430
itertools = { workspace = true }
3531
lazy_static = "1.5"
3632
levenshtein = "1"
3733
nix = { version = "0.29", features = ["signal"] }
3834
path-absolutize = "3"
39-
rand = { workspace = true }
4035
regex = { workspace = true }
4136
reqwest = { workspace = true }
4237
rpassword = "7"
@@ -51,15 +46,13 @@ toml = { workspace = true }
5146
tracing = { workspace = true }
5247
url = { workspace = true }
5348
uuid = { version = "1.0", features = ["v4"] }
54-
wasmtime = { workspace = true }
5549
watchexec = { git = "https://github.com/watchexec/watchexec.git", rev = "8e91d26ef6400c1e60b32a8314cbb144fa33f288" }
5650
watchexec-filterer-globset = { git = "https://github.com/watchexec/watchexec.git", rev = "8e91d26ef6400c1e60b32a8314cbb144fa33f288" }
5751

5852
spin-app = { path = "crates/app" }
5953
spin-build = { path = "crates/build" }
6054
spin-common = { path = "crates/common" }
6155
spin-doctor = { path = "crates/doctor" }
62-
spin-expressions = { path = "crates/expressions" }
6356
spin-factor-outbound-networking = { path = "crates/factor-outbound-networking" }
6457
spin-http = { path = "crates/http" }
6558
spin-loader = { path = "crates/loader" }

crates/app/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ authors = { workspace = true }
55
edition = { workspace = true }
66

77
[dependencies]
8-
anyhow = { workspace = true }
9-
async-trait = { workspace = true }
108
serde = { workspace = true }
119
serde_json = { workspace = true }
1210
spin-locked-app = { path = "../locked-app" }
13-
thiserror = { workspace = true }

crates/build/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@ edition = { workspace = true }
66

77
[dependencies]
88
anyhow = { workspace = true }
9-
futures = { workspace = true }
109
serde = { workspace = true }
1110
spin-common = { path = "../common" }
1211
spin-manifest = { path = "../manifest" }
1312
subprocess = "0.2"
1413
terminal = { path = "../terminal" }
1514
tokio = { workspace = true, features = ["full"] }
1615
toml = { workspace = true }
17-
tracing = { workspace = true }

crates/compose/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ async-trait = { workspace = true }
1414
indexmap = "2"
1515
semver = "1"
1616
spin-app = { path = "../app" }
17-
spin-componentize = { workspace = true }
1817
spin-serde = { path = "../serde" }
1918
thiserror = { workspace = true }
2019
wac-graph = "0.6"

crates/expressions/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ edition = { workspace = true }
77
[dependencies]
88
anyhow = { workspace = true }
99
async-trait = { workspace = true }
10-
serde = { workspace = true }
1110
spin-locked-app = { path = "../locked-app" }
1211
thiserror = { workspace = true }
1312

crates/factor-outbound-http/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ spin-factor-outbound-networking = { path = "../factor-outbound-networking" }
1616
spin-factors = { path = "../factors" }
1717
spin-telemetry = { path = "../telemetry" }
1818
spin-world = { path = "../world" }
19-
terminal = { path = "../terminal" }
2019
tokio = { workspace = true, features = ["macros", "rt", "net"] }
2120
tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "tls12"] }
2221
tracing = { workspace = true }

crates/factor-outbound-mysql/Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,11 @@ doctest = false
99

1010
[dependencies]
1111
anyhow = { workspace = true }
12-
flate2 = "1"
1312
# Removing default features for mysql_async to remove flate2/zlib feature
1413
mysql_async = { version = "0.34", default-features = false, features = [
1514
"native-tls-tls",
1615
] }
17-
# Removing default features for mysql_common to remove flate2/zlib feature
18-
mysql_common = { version = "0.32", default-features = false }
19-
spin-app = { path = "../app" }
2016
spin-core = { path = "../core" }
21-
spin-expressions = { path = "../expressions" }
2217
spin-factor-outbound-networking = { path = "../factor-outbound-networking" }
2318
spin-factors = { path = "../factors" }
2419
spin-resource-table = { path = "../table" }

crates/factor-outbound-networking/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ spin-factors = { path = "../factors" }
2020
spin-locked-app = { path = "../locked-app" }
2121
spin-manifest = { path = "../manifest" }
2222
spin-serde = { path = "../serde" }
23-
terminal = { path = "../terminal" }
2423
tracing = { workspace = true }
2524
url = { workspace = true }
2625
urlencoding = "2"

crates/factor-sqlite/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ rust-version.workspace = true
1010

1111
[dependencies]
1212
async-trait = { workspace = true }
13-
serde = { workspace = true }
1413
spin-factors = { path = "../factors" }
1514
spin-locked-app = { path = "../locked-app" }
1615
spin-resource-table = { path = "../table" }
1716
spin-world = { path = "../world" }
1817
tokio = { workspace = true }
19-
toml = { workspace = true }
2018
tracing = { workspace = true }
2119

2220
[dev-dependencies]

0 commit comments

Comments
 (0)