-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 800 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (35 loc) · 800 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
[package]
name = "quilt"
authors = ["Nathaniel Fernandes <nathaniel.s.fernandes@gmail.com>"]
version = "0.1.1"
edition = "2021"
[lib]
name = "quilt"
[features]
default = ["disassembler", "qstd", "serde_docs"]
serde_docs = ["interpreter/serde_docs"]
arc = ["common/arc"]
[dependencies]
common = { path = "./common" }
parser = { path = "./parser" }
bytecode = { path = "./bytecode" }
compiler = { path = "./compiler" }
interpreter = { path = "./interpreter" }
qstd = { path = "./qstd", optional = true }
disassembler = { path = "./disassembler", optional = true }
[workspace]
members = [
"common",
"parser",
"bytecode",
"compiler",
"interpreter",
"disassembler",
"qstd",
]
exclude = ["cli"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"