-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 823 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
34
35
36
37
38
39
40
41
[workspace]
resolver = "2"
members = [
"p4",
"x4c",
"x4c_error_codes",
"codegen/rust",
"lang/p4rs",
"lang/p4-macro",
"lang/p4-macro-test",
"lang/prog/sidecar-lite",
"test",
"book/code",
]
[workspace.dependencies]
p4-macro = { path = "lang/p4-macro" }
p4-rust = { path = "codegen/rust" }
p4rs = { path = "lang/p4rs" }
tests = { path = "test" }
anyhow = "1"
bitvec = "1.0"
clap = { version = "4", features = ["color", "derive"] }
colored = "3"
libloading = { version = "0.9" }
num = { version = "0.4", features = ["serde"] }
p4 = { path = "p4" }
pnet = "0.35"
prettyplease = "0.2"
proc-macro2 = "1.0"
quote = "1.0"
rand = "0.9.2"
regex = "1"
serde = "1.0"
serde_tokenstream = "0.2"
syn = "2.0"
tempfile = "3.25"
usdt = "0.5.0"
xfr = { git = "https://github.com/oxidecomputer/xfr" }