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
|
|
|
|
|
2022-09-03 18:40:01 +02:00
|
|
|
[lib]
|
|
|
|
name = "tvix_eval"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "tvix-eval"
|
|
|
|
required-features = [ "repl" ]
|
|
|
|
|
2022-08-04 15:29:38 +02:00
|
|
|
[dependencies]
|
2022-08-11 18:02:19 +02:00
|
|
|
smol_str = "0.1"
|
2022-09-03 18:40:01 +02:00
|
|
|
rustyline = { version = "10.0.0", optional = true }
|
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-09-04 15:56:20 +02:00
|
|
|
tabwriter = "1.2"
|
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-09-11 23:34:25 +02:00
|
|
|
codemap-diagnostic = "0.1.1"
|
2022-09-17 19:52:02 +02:00
|
|
|
proptest = { version = "1.0.0", default_features = false, features = ["std", "alloc", "break-dead-code", "tempfile"], optional = true }
|
|
|
|
test-strategy = { version = "0.2.1", optional = true }
|
2022-09-18 21:59:59 +02:00
|
|
|
clap = { version = "3.2.22", optional = true, features = ["derive", "env"] }
|
2022-08-16 22:43:45 +02:00
|
|
|
|
2022-09-18 16:37:29 +02:00
|
|
|
# rnix has not been released in a while (as of 2022-09-18), 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-09-18 16:37:29 +02:00
|
|
|
rev = "7d0d929c22ad27bdcc0779afe445b541d3ce9631"
|
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-09-03 17:42:27 +02:00
|
|
|
tempdir = "0.3.7"
|
2022-08-10 18:18:01 +02:00
|
|
|
|
|
|
|
[features]
|
2022-09-17 19:52:02 +02:00
|
|
|
default = [ "repl", "arbitrary" ]
|
2022-09-03 18:40:01 +02:00
|
|
|
|
2022-08-10 18:18:01 +02:00
|
|
|
# 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-09-03 18:40:01 +02:00
|
|
|
# Enables building the binary (tvix-eval REPL)
|
2022-09-18 21:59:59 +02:00
|
|
|
repl = [ "dep:rustyline", "dep:clap" ]
|
2022-09-03 18:40:01 +02:00
|
|
|
|
2022-09-17 19:52:02 +02:00
|
|
|
# Enables Arbitrary impls for internal types (required to run tests)
|
|
|
|
arbitrary = [ "proptest", "test-strategy" ]
|
|
|
|
|
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
|