35 lines
676 B
TOML
35 lines
676 B
TOML
[package]
|
|
name = "nixjit"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
repl = ["dep:rustyline"]
|
|
|
|
[[bin]]
|
|
name = "repl"
|
|
required-features = ["repl"]
|
|
|
|
[profile.perf]
|
|
debug = 2
|
|
strip = false
|
|
inherits = "release"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|
|
|
|
[dependencies]
|
|
rnix = "0.12"
|
|
thiserror = "2.0"
|
|
itertools = "0.14"
|
|
rpds = "1.1"
|
|
derive_more = { version = "2.0", features = ["full"] }
|
|
ecow = "0.2"
|
|
regex = "1.11"
|
|
hashbrown = "0.15"
|
|
inkwell = { version = "0.6.0", features = ["llvm18-1"] }
|
|
gc-arena = { git = "https://github.com/kyren/gc-arena", rev = "d651e3b4363d525a2d502c2305bc73e291835c84", features= ["hashbrown"] }
|
|
|
|
rustyline = { version = "15.0", optional = true }
|