Skip to content

Commit 51dd8e9

Browse files
committed
Removes unused dependencies
1 parent d1a0c4b commit 51dd8e9

File tree

14 files changed

+0
-23
lines changed

14 files changed

+0
-23
lines changed

api/swimos_api/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,4 @@ bytes = { workspace = true }
1515
tokio = { workspace = true }
1616
tokio-util = { workspace = true, features = ["codec"] }
1717
static_assertions = { workspace = true }
18-
uuid = { workspace = true }
1918
http = { workspace = true }
20-
url = { workspace = true }

client/fixture/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
swimos_runtime = { path = "../../runtime/swimos_runtime" }
87
swimos_remote = { path = "../../runtime/swimos_remote" }
98
swimos_net = { path = "../../runtime/swimos_net" }
109
swimos_api = { path = "../../api/swimos_api" }

client/swimos_client/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ edition = "2021"
77
default = []
88
tls = ["swimos_tls"]
99
deflate = ["runtime/deflate"]
10-
trust_dns = ["swimos_runtime/trust_dns"]
1110

1211
[dependencies]
1312
swimos_tls = { path = "../../runtime/swimos_tls", optional = true }

example_apps/transit/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ tokio-util = { workspace = true, features = ["io"] }
1212
example-util = { path = "../example_util" }
1313
serde = { workspace = true, features = ["derive"] }
1414
csv = "1.2"
15-
serde-xml-rs = "0.6"
1615
thiserror = { workspace = true }
1716
percent-encoding = { workspace = true }
1817
reqwest = { workspace = true, features = ["rustls-tls", "gzip"] }

runtime/swimos_messages/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ tokio = { workspace = true, features = ["macros", "rt"] }
2222
uuid = { workspace = true, features = ["v4"] }
2323
swimos_utilities = { path = "../../swimos_utilities", features = ["buf_channel"] }
2424
rand = { workspace = true }
25-
swimos_api = { path = "../../api/swimos_api" }

runtime/swimos_remote/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ edition = "2021"
66

77
[dependencies]
88
ratchet = { workspace = true, features = ["deflate", "split"] }
9-
ratchet_fixture = { workspace = true }
109
bytes = { workspace = true }
1110
flate2 = { workspace = true }
1211
futures = { workspace = true }

runtime/swimos_runtime/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@ edition = "2021"
66

77
[features]
88
default = []
9-
trust_dns = ["trust-dns-resolver"]
109

1110
[dependencies]
1211
bitflags = { workspace = true }
1312
bytes = { workspace = true }
1413
either = { workspace = true }
15-
flate2 = { workspace = true }
1614
futures = { workspace = true }
1715
futures-util = { workspace = true }
1816
http = { workspace = true }
@@ -24,7 +22,6 @@ swimos_agent_protocol = { path = "../../api/swimos_agent_protocol" }
2422
swimos_meta = { path = "../../api/swimos_meta" }
2523
swimos_model = { path = "../../api/swimos_model" }
2624
swimos_form = { path = "../../api/swimos_form" }
27-
swimos_tracing = { path = "../../swimos_utilities/swimos_tracing" }
2825
swimos_recon = { path = "../../api/formats/swimos_recon" }
2926
swimos_messages = { path = "../swimos_messages" }
3027
swimos_net = { path = "../swimos_net" }
@@ -33,7 +30,6 @@ thiserror = { workspace = true }
3330
tokio-stream = { workspace = true, features = ["sync"] }
3431
uuid = { workspace = true }
3532
static_assertions = { workspace = true }
36-
trust-dns-resolver = { workspace = true, optional = true }
3733
nom = { workspace = true }
3834
percent-encoding = { workspace = true }
3935

server/swimos_agent/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ swimos_utilities = { path = "../../swimos_utilities", features = ["io", "trigger
1414
swimos_model = { path = "../../api/swimos_model" }
1515
swimos_form = { path = "../../api/swimos_form" }
1616
swimos_recon = { path = "../../api/formats/swimos_recon" }
17-
swimos_downlink = { path = "../../swimos_downlink" }
1817
bytes = { workspace = true }
1918
tokio = { workspace = true, features = ["macros", "time"] }
2019
tokio-util = { workspace = true, features = ["codec"] }

server/swimos_server_app/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ edition = "2021"
77
[features]
88
default = []
99
rocks_store = ["swimos_persistence/rocks", "rocksdb"]
10-
trust_dns = ["swimos_runtime/trust_dns"]
1110

1211
[dependencies]
1312
futures = { workspace = true }

swimos_utilities/swimos_future/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ edition = "2021"
88
either = { workspace = true }
99
futures = { workspace = true }
1010
tokio = { workspace = true, features = ["sync", "time"] }
11-
tokio-util = { workspace = true, features = ["codec"] }
1211
pin-project = { workspace = true }
1312
swimos_trigger = { path = "../swimos_trigger" }
1413
rand = { workspace = true }
1514
swimos_num = { path = "../swimos_num" }
1615

1716
[dev-dependencies]
1817
tokio = { workspace = true, features = ["sync", "time", "rt", "macros"] }
19-
tokio-stream = { workspace = true }
2018
parking_lot = { workspace = true }

0 commit comments

Comments
 (0)