-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 876 Bytes
/
Cargo.toml
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
39
[workspace]
resolver = "2"
members = [
"ingot",
"ingot-examples",
"ingot-macros",
"ingot-types",
]
[workspace.package]
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/oxidecomputer/ingot"
rust-version = "1.81"
[workspace.dependencies]
# Internal
ingot = { path = "ingot", default-features = true }
ingot-macros = { path = "ingot-macros", default-features = false }
ingot-types = { path = "ingot-types", default-features = false }
# External
bitflags = "2"
darling = "0.20"
itertools = "0.13"
macaddr = { version = "1", default-features = false }
proc-macro2 = { version = "1" }
quote = "1.0"
regex = "1"
serde = { version = "1", default-features = false }
syn = { version = "2", features = ["visit"] }
zerocopy = { version = "0.8", features = ["derive"] }
# External dev-deps
criterion = "0.5"
[profile.release]
debug = 2
lto = true