2022-08-04 15:29:38 +02:00
|
|
|
[package]
|
|
|
|
name = "tvix-eval"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-04 15:44:49 +02:00
|
|
|
rnix = "0.10.2"
|
2022-08-10 17:52:42 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-25 17:04:07 +02:00
|
|
|
criterion = "0.3.6"
|
2022-08-10 17:52:42 +02:00
|
|
|
test-generator = "0.3.0"
|
2022-08-10 18:18:01 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# Enables running the Nix language test suite from the original C++
|
|
|
|
# Nix implementation (at version 2.3) against Tvix.
|
|
|
|
nix_tests = []
|
2022-08-25 17:04:07 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "eval"
|
|
|
|
harness = false
|