-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathCargo.toml
41 lines (35 loc) · 869 Bytes
/
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
[package]
name = "ante"
version = "0.1.1"
authors = ["Jake Fecher <[email protected]>"]
edition = "2018"
build = "build.rs"
rust-version = "1.74"
[lib]
name = "ante"
edition = "2018"
[workspace]
members = [ "ante-ls" ]
[dependencies]
clap = { version = "4", features = ["derive"] }
colored = "2.0.0"
mimalloc = { version = "0.1.29", default-features = false }
difference = "2.0.0"
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = ["llvm18-0", "llvm18-0-prefer-dynamic"], optional = true }
cranelift = "0.86.1"
cranelift-module = "0.86.1"
cranelift-jit = "0.86.1"
cranelift-object = "0.86.1"
target-lexicon = "0.12.4"
clap_complete = "4"
petgraph = "0.6.4"
[dev-dependencies]
goldentests = "1.1.0"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
debug = true
[features]
default = ["llvm"]
llvm = ["inkwell"]