Skip to content

Commit 3a79596

Browse files
authored
nit(app/integration): sort cargo dependencies (#3887)
this alphabetizes dependencies in `linkerd-app-integration`'s manifest. Signed-off-by: katelyn martin <kate@buoyant.io>
1 parent c5c2c24 commit 3a79596

File tree

1 file changed

+26
-16
lines changed

1 file changed

+26
-16
lines changed

linkerd/app/integration/Cargo.toml

Lines changed: 26 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,38 +23,48 @@ h2 = { workspace = true }
2323
http = { workspace = true }
2424
http-body = { workspace = true }
2525
http-body-util = { workspace = true }
26-
hyper = { workspace = true, features = [
27-
"http1",
28-
"http2",
29-
"client",
30-
"server",
31-
] }
3226
hyper-util = { workspace = true, features = ["service"] }
3327
ipnet = "2"
3428
linkerd-app = { path = "..", features = ["allow-loopback"] }
3529
linkerd-app-core = { path = "../core" }
36-
linkerd-metrics = { path = "../../metrics", features = ["test_util"] }
37-
linkerd2-proxy-api = { workspace = true, features = [
38-
"destination",
39-
"arbitrary",
40-
] }
4130
linkerd-app-test = { path = "../test" }
31+
linkerd-metrics = { path = "../../metrics", features = ["test_util"] }
4232
linkerd-tracing = { path = "../../tracing" }
4333
maplit = "1"
4434
parking_lot = "0.12"
4535
regex = "1"
36+
rustls-pemfile = "2.2"
4637
socket2 = "0.5"
4738
tokio = { version = "1", features = ["io-util", "net", "rt", "macros"] }
48-
tokio-stream = { version = "0.1", features = ["sync"] }
4939
tokio-rustls = { workspace = true }
50-
rustls-pemfile = "2.2"
51-
tower = { workspace = true, default-features = false }
40+
tokio-stream = { version = "0.1", features = ["sync"] }
5241
tonic = { workspace = true, features = ["transport"], default-features = false }
42+
tower = { workspace = true, default-features = false }
5343
tracing = "0.1"
54-
tracing-subscriber = { version = "0.3", default-features = false, features = [
44+
45+
[dependencies.hyper]
46+
workspace = true
47+
features = [
48+
"client",
49+
"http1",
50+
"http2",
51+
"server",
52+
]
53+
54+
[dependencies.linkerd2-proxy-api]
55+
workspace = true
56+
features = [
57+
"arbitrary",
58+
"destination",
59+
]
60+
61+
[dependencies.tracing-subscriber]
62+
version = "0.3"
63+
default-features = false
64+
features = [
5565
"fmt",
5666
"std",
57-
] }
67+
]
5868

5969
[dev-dependencies]
6070
flate2 = { version = "1", default-features = false, features = [

0 commit comments

Comments
 (0)