-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 747 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 747 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
workspace = { members = ["test_gen", "virtual_machine"] }
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
[package]
name = "toast_interpreter"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
[build-dependencies] # <-- We added this and everything after!
lalrpop = "0.20.2"
[dependencies]
bytemuck = "1.14.0"
byteorder = "1.5.0"
itertools = "0.12.1"
lalrpop-util = { version = "0.20.2", features = ["lexer", "unicode"] }
lazy_static = "1.4.0"
phf = { version = "0.11.2", features = ["macros"] }
quote = "1.0.35"
serde = "1.0.193"
serde_json = "1.0.108"
syn = "2.0.52"
test_gen = { path = "./test_gen" }
virtual_machine = { path = "./virtual_machine" }