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"
|
|
|
|
|
2022-08-04 15:29:38 +02:00
|
|
|
[dependencies]
|
2022-08-11 18:02:19 +02:00
|
|
|
smol_str = "0.1"
|
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-10-13 14:23:45 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2022-10-13 00:45:52 +02:00
|
|
|
regex = "1.6.0"
|
2022-11-06 00:50:31 +01:00
|
|
|
builtin-macros = { path = "./builtin-macros", package = "tvix-eval-builtin-macros" }
|
2022-11-23 04:42:06 +01:00
|
|
|
backtrace-on-stack-overflow = { version = "0.2.0", optional = true }
|
2022-12-06 14:31:09 +01:00
|
|
|
rnix = "0.11.0"
|
2022-08-10 17:52:42 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-12-16 12:54:22 +01:00
|
|
|
criterion = "0.4"
|
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-12-08 22:19:22 +01:00
|
|
|
default = [ "impure", "arbitrary", "nix_tests", "backtrace_overflow" ]
|
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-18 22:34:41 +02:00
|
|
|
# Enables operations in the VM which depend on the ability to perform I/O
|
|
|
|
impure = []
|
|
|
|
|
2022-09-17 19:52:02 +02:00
|
|
|
# Enables Arbitrary impls for internal types (required to run tests)
|
|
|
|
arbitrary = [ "proptest", "test-strategy" ]
|
|
|
|
|
2022-11-23 04:42:06 +01:00
|
|
|
# For debugging use only; not appropriate for production use.
|
|
|
|
backtrace_overflow = [ "backtrace-on-stack-overflow" ]
|
|
|
|
|
2022-08-25 17:04:07 +02:00
|
|
|
[[bench]]
|
|
|
|
name = "eval"
|
|
|
|
harness = false
|