Skip to content

Commit 8b3f53d

Browse files
authored
order ci (#513)
1 parent a6c1bc9 commit 8b3f53d

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,25 @@ edition = "2024"
99
debug = 1
1010

1111
[dependencies]
12-
sentry_protos = "0.2.0"
1312
anyhow = "1.0.92"
13+
bytes = "1.10.0"
1414
chrono = { version = "0.4.26" }
15-
sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio", "chrono"] }
16-
tonic = "0.12"
17-
tonic-health = "0.12.3"
15+
clap = { version = "4.5.20", features = ["derive"] }
16+
elegant-departure = { version = "0.3.1", features = ["tokio"] }
17+
figment = { version = "0.10.19", features = ["env", "yaml", "test"] }
18+
futures = "0.3.31"
19+
futures-util = "0.3.31"
20+
hex = "0.4.3"
21+
hmac = "0.12.1"
22+
http = "1.1.0"
23+
http-body-util = "0.1.2"
24+
libsqlite3-sys = "0.30.1"
25+
metrics = "0.24.0"
26+
metrics-exporter-statsd = "0.9.0"
1827
prost = "0.13"
1928
prost-types = "0.13.3"
20-
tokio = { version = "1.43.1", features = ["full"] }
21-
tokio-util = "0.7.12"
22-
tokio-stream = { version = "0.1.16", features = ["full"] }
23-
futures = "0.3.31"
29+
rand = "0.8.5"
2430
rdkafka = { version = "0.37.0", features = ["cmake-build", "ssl"] }
25-
serde = "1.0.214"
26-
serde_yaml = "0.9.34"
27-
figment = { version = "0.10.19", features = ["env", "yaml", "test"] }
28-
clap = { version = "4.5.20", features = ["derive"] }
2931
sentry = { version = "0.41.0", default-features = false, features = [
3032
# default features, except `release-health` is disabled
3133
"backtrace",
@@ -37,26 +39,24 @@ sentry = { version = "0.41.0", default-features = false, features = [
3739
"tracing",
3840
"logs"
3941
] }
42+
sentry_protos = "0.2.0"
43+
serde = "1.0.214"
44+
serde_yaml = "0.9.34"
45+
sha2 = "0.10.8"
46+
sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio", "chrono"] }
47+
tokio = { version = "1.43.1", features = ["full"] }
48+
tokio-stream = { version = "0.1.16", features = ["full"] }
49+
tokio-util = "0.7.12"
50+
tonic = "0.12"
51+
tonic-health = "0.12.3"
52+
tower = "0.5.1"
4053
tracing = "0.1.40"
4154
tracing-subscriber = { version = "0.3.18", features = [
4255
"std",
4356
"env-filter",
4457
"json",
4558
] }
46-
metrics-exporter-statsd = "0.9.0"
47-
metrics = "0.24.0"
48-
elegant-departure = { version = "0.3.1", features = ["tokio"] }
4959
uuid = { version = "1.11.0", features = ["v4"] }
50-
tower = "0.5.1"
51-
http = "1.1.0"
52-
hmac = "0.12.1"
53-
sha2 = "0.10.8"
54-
hex = "0.4.3"
55-
bytes = "1.10.0"
56-
futures-util = "0.3.31"
57-
http-body-util = "0.1.2"
58-
rand = "0.8.5"
59-
libsqlite3-sys = "0.30.1"
6060

6161
[dev-dependencies]
6262
criterion = { version = "0.5.1", features = ["async_tokio"] }

0 commit comments

Comments
 (0)