Skip to content

Commit fbf5790

Browse files
committed
Revert Trust DNS flags
1 parent 51dd8e9 commit fbf5790

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

client/swimos_client/Cargo.toml

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

1112
[dependencies]
1213
swimos_tls = { path = "../../runtime/swimos_tls", optional = true }

runtime/swimos_runtime/Cargo.toml

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

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

1011
[dependencies]
1112
bitflags = { workspace = true }
1213
bytes = { workspace = true }
1314
either = { workspace = true }
15+
flate2 = { workspace = true }
1416
futures = { workspace = true }
1517
futures-util = { workspace = true }
1618
http = { workspace = true }
@@ -22,6 +24,7 @@ swimos_agent_protocol = { path = "../../api/swimos_agent_protocol" }
2224
swimos_meta = { path = "../../api/swimos_meta" }
2325
swimos_model = { path = "../../api/swimos_model" }
2426
swimos_form = { path = "../../api/swimos_form" }
27+
swimos_tracing = { path = "../../swimos_utilities/swimos_tracing" }
2528
swimos_recon = { path = "../../api/formats/swimos_recon" }
2629
swimos_messages = { path = "../swimos_messages" }
2730
swimos_net = { path = "../swimos_net" }
@@ -30,6 +33,7 @@ thiserror = { workspace = true }
3033
tokio-stream = { workspace = true, features = ["sync"] }
3134
uuid = { workspace = true }
3235
static_assertions = { workspace = true }
36+
trust-dns-resolver = { workspace = true, optional = true }
3337
nom = { workspace = true }
3438
percent-encoding = { workspace = true }
3539

server/swimos_server_app/Cargo.toml

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

1112
[dependencies]
1213
futures = { workspace = true }

0 commit comments

Comments
 (0)