29 lines
471 B
TOML
29 lines
471 B
TOML
[package]
|
|
name = "nixjit"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
repl = ["dep:rustyline"]
|
|
|
|
[[bin]]
|
|
name = "repl"
|
|
required-features = ["repl"]
|
|
|
|
[profile.perf]
|
|
debug = 1
|
|
inherits = "release"
|
|
|
|
[dependencies]
|
|
rnix = "0.11"
|
|
thiserror = "2.0"
|
|
itertools = "0.12"
|
|
rpds = "1.1"
|
|
derive_more = { version = "2.0", features = [ "full" ] }
|
|
ecow = "0.2"
|
|
regex = "1.11"
|
|
|
|
inkwell = { version = "0.6.0", features = ["llvm18-1"] }
|
|
|
|
rustyline = { version = "15.0", optional = true }
|