-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (59 loc) · 1.42 KB
/
Cargo.toml
File metadata and controls
63 lines (59 loc) · 1.42 KB
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
[workspace]
resolver = "3"
members = ["asmgen", "capy", "capy-derive"]
default-members = ["capy"]
[workspace.dependencies]
mmtk = { git = "https://github.com/mmtk/mmtk-core", features = [] }
cranelift-jit = { version = "0.127", features = ["selinux-fix"] }
cranelift = "0.127"
cranelift-codegen = "0.127"
cranelift-module = "0.127"
cranelift-object = "0.127"
libloading = "0.9.0"
target-lexicon = "*"
gimli = "0.32.2"
object = { version = "0.37.3", features = ["macho"] }
libc = "0.2.174"
atomic = "0.6.1"
bitflags = "2.10.0"
bytemuck = "1.10.2"
easy-bitfield = "0.1.0"
env_logger = "0.11.8"
libm = "0.2.15"
num-bigint = "0.4.6"
rand = "0.9.2"
simplehash = "0.1.3"
num = "0.4.3"
tree-sitter = "0.25.5"
tree-sitter-scheme = { git = "https://github.com/6cdh/tree-sitter-scheme" }
paste = "1.0.15"
pretty = "0.12.4"
hashlink = "0.11.0"
petgraph = "0.8.2"
sha3 = "0.10.8"
hex = "*"
log = "0.4.27"
memmap2 = "0.9.8"
probe = "0.5.2"
lexical = { version = "7.0.4", features = ["power-of-two"] }
backtrace = "0.3.75"
which = "8.0.0"
libffi = { version = "5.0.0" }
tinyvec = "1.6.0"
unicode-general-category = "1.1.0"
unicode-normalization = "0.1.25"
clang = { version = "2.0.0", default-features = false }
capy = { path = "capy" }
capy-derive = { path = "capy-derive" }
[profile.release]
incremental = true
rpath = true
debug = false
debug-assertions = false
lto = false
panic = "abort"
opt-level = 2
[profile.dev]
incremental = true
opt-level = 0
rpath = true