-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (57 loc) · 1.25 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "capy"
version = "0.1.0"
edition = "2021"
[dependencies]
paste = "1.0"
macroassembler = { git = "https://github.com/playxe/masm-rs", features = ["x86-disasm"] }
mmtk = { git = "https://github.com/mmtk/mmtk-core", features = ["malloc_mimalloc"] }
libc = "0.2"
parking_lot = "0.12"
parking_lot_core = "0.9"
cfg-if = "1.0"
errno = "0.3"
generator = "0.7"
intrusive-collections = "0.9"
log = "0.4"
once_cell = "1.8"
alloca = "0.4"
num-traits = "0.2"
env_logger = "*"
pico-args = "0.5"
num = "0.4"
gimli = "0.28"
indexmap = "2.0"
chrono = "0.4"
cuid2 = "0.1"
unicode-general-category = "0.6"
r7rs-parser = { git = "https://github.com/playxe/r7rs-parser" }
#r7rs-parser = { path = "r7rs-parser"}
pretty = { version = "0.12", features = ["termcolor"]}
termcolor = "1.1"
murmur3 = "0.5"
rsetjmp = { git = "https://github.com/playxe/rsetjmp" }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"memoryapi",
"winnt",
"sysinfoapi",
"minwinbase",
"errhandlingapi",
"excpt",
"minwindef",
] }
[features]
llint = []
conditional-safepoint = []
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 2
[lib]
[[bin]]
name = "capy-boot"
path = "src/bin/boot.rs"
[[bin]]
name = "capy-vm"
path = "src/bin/vm.rs"