-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
57 lines (52 loc) · 1.29 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
[package]
name = "chili"
version = "0.1.0"
edition = "2021"
exclude = ["vendor/inkwell", "vendor/libffi-rs"]
[[bin]]
name = "chili"
path = "src/main.rs"
[dependencies]
paste = "1.0.7"
strum_macros = "0.23.1"
ptree = "0.4.0"
ustr = "0.9.0"
path-absolutize = "3.0.11"
bitflags = "1.3.2"
indexmap = "1.8.2"
slab = "0.4.5"
parking_lot = "0.12.1"
threadpool = "1.8.1"
num_cpus = "1.13.1"
execute = "0.2.9"
colored = "2.0.0"
num-format = "0.4.0"
codespan = "0.11.1"
codespan-reporting = "0.11.1"
libloading = "0.7.1"
byteorder = "1.4.3"
bumpalo = "3.9.1"
clap = { version = "3.1.9", features = ["derive"] }
serde = "1.0.137"
serde_json = "1.0.81"
unicode-xid = "0.2.2"
unindent = "0.1.7"
stopwatch = "0.0.7"
enum-as-inner = "0.5.0"
itertools = "0.10.3"
inkwell = { git = "https://github.com/r0nsha/inkwell", branch = "my-missing-features", features = [
"llvm12-0-no-llvm-linking",
] }
[target.'cfg(windows)'.dependencies]
libffi = { git = "https://github.com/r0nsha/libffi-rs" }
libc = "0.2.132"
widestring = "1.0.2"
winapi = { version = "0.3.9", features = [
"winuser",
"impl-default",
"oleauto",
] }
[target.'cfg(unix)'.dependencies]
libffi = { git = "https://github.com/r0nsha/libffi-rs", features = ["system"] }
[build-dependencies]
fs_extra = "1.2.0"