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-11 18:02:19 +02:00
|
|
|
smol_str = "0.1"
|
2022-08-11 22:52:55 +02:00
|
|
|
rustyline = "10.0.0"
|
2022-08-11 23:26:05 +02:00
|
|
|
dirs = "4.0.0"
|
2022-08-12 17:52:48 +02:00
|
|
|
path-clean = "0.1"
|
2022-08-13 20:29:30 +02:00
|
|
|
tabwriter = { version = "1.2", optional = true }
|
2022-08-16 22:43:45 +02:00
|
|
|
rowan = "*" # pinned by rnix
|
2022-09-01 14:52:48 +02:00
|
|
|
codemap = "0.1.3"
|
2022-08-16 22:43:45 +02:00
|
|
|
|
2022-08-22 20:04:50 +02:00
|
|
|
# rnix has not been released in a while (as of 2022-08-22), we will
|
2022-08-16 22:43:45 +02:00
|
|
|
# use it from git.
|
|
|
|
[dependencies.rnix]
|
|
|
|
git = "https://github.com/nix-community/rnix-parser.git"
|
2022-08-22 20:04:50 +02:00
|
|
|
rev = "614e7d4641e83ab7eb321d9ac5e3d12985f9f3ba"
|
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-16 14:33:50 +02:00
|
|
|
pretty_assertions = "1.2.1"
|
2022-09-02 21:02:19 +02:00
|
|
|
itertools = "0.10.3"
|
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
|
|
|
|
2022-08-13 20:29:30 +02:00
|
|
|
# Enables printing compiled code and tracing the stack state at runtime.
|
|
|
|
disassembler = ["dep:tabwriter"]
|
|
|
|
|
2022-08-25 17:04:07 +02:00
|
|
|
[[bench]]
|
|
|
|
name = "eval"
|
|
|
|
harness = false
|
2022-08-30 18:53:50 +02:00
|
|
|
|
|
|
|
[profile.release-with-debug]
|
|
|
|
inherits = "release"
|
|
|
|
debug = true
|