Skip to content

Commit 5545276

Browse files
authored
Group dependencies in qp/Cargo.toml (#274)
1 parent aa610e8 commit 5545276

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

lib/query-planner/Cargo.toml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,32 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
lazy-init = "0.5.1"
9+
# GraphQL
1010
graphql-tools = "0.4.0"
1111
graphql-parser = "0.4.1"
12-
thiserror = "2.0.12"
13-
petgraph = "0.8.0"
14-
rustc-hash = "2.1.1"
15-
tracing = { version = "0.1.41" }
12+
# Serialization
1613
serde = "1.0.219"
1714
serde_json = { version = "1.0.140", features = ["preserve_order"] }
15+
# Tracing
16+
tracing = { version = "0.1.41" }
17+
# Data Structures
18+
petgraph = "0.8.0"
19+
# Utils
20+
lazy-init = "0.5.1"
21+
thiserror = "2.0.12"
22+
rustc-hash = "2.1.1"
23+
1824

1925
[dev-dependencies]
26+
# Testing
2027
insta = { version = "1.42.1" }
28+
# Benchmarking
29+
criterion = { version = "0.6", features = ["html_reports"] }
30+
# Tracing
2131
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
2232
tracing-tree = "0.4.0"
33+
# Utils
2334
lazy_static = "1.5.0"
24-
criterion = { version = "0.6", features = ["html_reports"] }
2535

2636
[[bench]]
2737
name = "qp_benches"

0 commit comments

Comments
 (0)