Skip to content

Commit beea72f

Browse files
committed
ci: sort deps
1 parent 247fe9e commit beea72f

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,6 @@ name = "rust-simple-chat"
33
version = "0.1.0"
44
edition = "2024"
55

6-
[profile.release-lto]
7-
inherits = "release"
8-
lto = true
9-
10-
[profile.profiling]
11-
inherits = "release"
12-
debug = true
13-
146
[[bin]]
157
name = "chat"
168
path = "src/bin/chat/main.rs"
@@ -19,15 +11,6 @@ path = "src/bin/chat/main.rs"
1911
name = "worker"
2012
path = "src/bin/worker/main.rs"
2113

22-
[[bench]]
23-
name = "benches"
24-
harness = false
25-
26-
[dev-dependencies]
27-
http-body-util = "0.1.3"
28-
mime = "0.3.17"
29-
serde_json = "1.0.140"
30-
3114
[dependencies]
3215
anyhow = { version = "1.0.98", default-features = false }
3316
async-trait = { version = "0.1.88" }
@@ -47,3 +30,20 @@ tracing = { version = "0.1.41", default-features = false }
4730
utoipa = { version = "5.3.1", features = ["axum_extras", "chrono"] }
4831
utoipa-axum = { version = "0.2.0" }
4932
validator = { version = "0.20.0", features = ["derive"] }
33+
34+
[dev-dependencies]
35+
http-body-util = "0.1.3"
36+
mime = "0.3.17"
37+
serde_json = "1.0.140"
38+
39+
[profile.release-lto]
40+
inherits = "release"
41+
lto = true
42+
43+
[profile.profiling]
44+
inherits = "release"
45+
debug = true
46+
47+
[[bench]]
48+
name = "benches"
49+
harness = false

0 commit comments

Comments
 (0)