forked from jungnitz/lime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 1.09 KB
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
34
35
36
37
38
[workspace]
resolver = "3"
members = ["crates/*", "rs"]
[workspace.dependencies]
lime-generic-def = { path = "crates/generic-def" }
lime-generic = { path = "crates/generic" }
lime-macros = { path = "crates/macros" }
lime-rs = { path = "rs" }
eggmock = { path = "eggmock" }
tokio = { version = "1.47.1", features = [ "process", "full"] }
rustc-hash = "2.1.0"
either = "1.13.0"
smallvec = "1.14.0"
ouroboros = "0.18.0"
derive-where = "1.5.0"
derive_more = { version = "2.0.1", features = ["full"] }
paste = "1.0.15"
strum = { version = "0.27.1", features = ["derive"] }
itertools = "0.14.0"
convert_case = "0.8.0"
delegate = "0.13.3"
blanket = "0.4.0"
petgraph = "0.8.2"
tracing = "0.1"
test-log = { version = "0.2", default-features = false, features = ["trace"] }
egg = { version = "0.10.0", features = ["lp"] }
pathfinding = { version = "4.14.0" }
ordered-float = { version = "5.0.0" }
derive-syn-parse = { version = "0.2.0" }
csv = "1.3.1"
serde = { version = "1.0", features = [ "derive"] }
anyhow = { version = "1.0"}
serde_json = { version = "1.0"}
[workspace.lints.rust]
unused_extern_crates = "forbid"