-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 973 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[workspace]
members = [
"crates/hotpath-macros",
"crates/hotpath",
"crates/hotpath-backend",
"crates/test-tokio-async",
"crates/test-smol-async",
"crates/test-all-features",
"crates/test-channels-asc",
"crates/test-channels-crossbeam",
"crates/test-channels-ftc",
"crates/test-channels-std",
"crates/test-streams",
"crates/test-channels-tokio",
"crates/test-futures",
"crates/test-debug",
"crates/hotpath-meta",
"crates/hotpath-macros-meta",
]
resolver = "2"
[workspace.dependencies]
hotpath-macros = { path = "./crates/hotpath-macros", version = "0.13.0" }
hotpath = { path = "./crates/hotpath", version = "0.13.0" }
hotpath-meta = { path = "./crates/hotpath-meta", version = "0.13.0" }
hotpath-macros-meta = { path = "./crates/hotpath-macros-meta", version = "0.13.0" }
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
[profile.profiling]
inherits = "release"
debug = true