Skip to content

Commit 7c48569

Browse files
authored
chore: clean up dev deps (#1712)
1 parent f752263 commit 7c48569

File tree

9 files changed

+7
-32
lines changed

9 files changed

+7
-32
lines changed

services/shuttle-actix-web/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ keywords = ["shuttle-service", "actix"]
1010
[workspace]
1111

1212
[dependencies]
13-
actix-web = { version = "4.3.1" }
14-
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
13+
actix-web = "4.3.1"
1514
num_cpus = "1.15.0"
16-
17-
[dev-dependencies]
18-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }
15+
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }

services/shuttle-axum/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ axum = { version = "0.7.3", optional = true }
1414
axum-0-6 = { package = "axum", version = "0.6.13", optional = true }
1515
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
1616

17-
[dev-dependencies]
18-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }
19-
2017
[features]
2118
default = ["axum"]
2219

services/shuttle-poem/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,5 @@ keywords = ["shuttle-service", "poem"]
1010
[workspace]
1111

1212
[dependencies]
13-
poem = { version = "2.0.0" }
13+
poem = "2.0.0"
1414
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
15-
16-
[dev-dependencies]
17-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }

services/shuttle-rocket/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,3 @@ keywords = ["shuttle-service", "rocket"]
1212
[dependencies]
1313
rocket = "0.5.0"
1414
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
15-
16-
[dev-dependencies]
17-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }

services/shuttle-salvo/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,5 @@ keywords = ["shuttle-service", "salvo"]
1010
[workspace]
1111

1212
[dependencies]
13-
salvo = { version = "0.63.0" }
13+
salvo = "0.63.0"
1414
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
15-
16-
[dev-dependencies]
17-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }

services/shuttle-thruster/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ keywords = ["shuttle-service", "thruster"]
1010
[workspace]
1111

1212
[dependencies]
13-
thruster = { version = "1.3.0" }
13+
thruster = "1.3.0"
1414
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
1515

1616
[dev-dependencies]
1717
thruster = { version = "1.3.0", features = ["hyper_server"] }
18-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }

services/shuttle-tide/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,5 @@ keywords = ["shuttle-service", "tide"]
1313
# Tide does not have tokio support. So make sure async-std is compatible with tokio
1414
# https://github.com/http-rs/tide/issues/791
1515
async-std = { version = "1.12.0", features = ["tokio1"] }
16-
tide = { version = "0.16.0" }
16+
tide = "0.16.0"
1717
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
18-
19-
[dev-dependencies]
20-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }

services/shuttle-tower/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,3 @@ keywords = ["shuttle-service", "tower"]
1313
hyper = { version = "0.14.23", features = ["server", "tcp", "http1"] }
1414
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
1515
tower = { version = "0.4.13", features = ["make"] }
16-
17-
[dev-dependencies]
18-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }

services/shuttle-warp/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,5 @@ keywords = ["shuttle-service", "warp"]
1010
[workspace]
1111

1212
[dependencies]
13-
warp = { version = "0.3.3" }
13+
warp = "0.3.3"
1414
shuttle-runtime = { path = "../../runtime", version = "0.43.0", default-features = false }
15-
16-
[dev-dependencies]
17-
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }

0 commit comments

Comments
 (0)