2023-11-03 12:34:37 +01:00
|
|
|
[package]
|
|
|
|
name = "tvix-glue"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
async-compression = { workspace = true, features = ["tokio", "gzip", "bzip2", "xz"] }
|
|
|
|
bstr = { workspace = true }
|
|
|
|
bytes = { workspace = true }
|
|
|
|
data-encoding = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
magic = { workspace = true }
|
2023-11-03 12:34:37 +01:00
|
|
|
nix-compat = { path = "../nix-compat" }
|
2024-08-28 23:54:46 +02:00
|
|
|
pin-project = { workspace = true }
|
|
|
|
reqwest = { workspace = true, features = ["rustls-tls-native-roots"] }
|
2023-12-09 11:53:17 +01:00
|
|
|
tvix-build = { path = "../build", default-features = false, features = []}
|
2023-11-03 12:34:37 +01:00
|
|
|
tvix-eval = { path = "../eval" }
|
|
|
|
tvix-castore = { path = "../castore" }
|
|
|
|
tvix-store = { path = "../store", default-features = false, features = []}
|
2024-06-12 23:17:18 +02:00
|
|
|
tvix-tracing = { path = "../tracing" }
|
2024-08-28 23:54:46 +02:00
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-indicatif = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tokio-tar = { workspace = true }
|
|
|
|
tokio-util = { workspace = true, features = ["io", "io-util", "compat"] }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
sha2 = { workspace = true }
|
|
|
|
sha1 = { workspace = true }
|
|
|
|
md-5 = { workspace = true }
|
|
|
|
url = { workspace = true }
|
|
|
|
walkdir = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
|
|
|
wu-manber = { workspace = true }
|
2023-11-03 12:34:37 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
criterion = { workspace = true, features = ["html_reports"] }
|
|
|
|
hex-literal = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
mimalloc = { workspace = true }
|
|
|
|
nix = { workspace = true, features = ["fs"] }
|
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
rstest = { workspace = true }
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
tokio-test = { workspace = true }
|
2023-12-09 17:45:39 +01:00
|
|
|
|
2024-01-14 01:41:16 +01:00
|
|
|
[features]
|
|
|
|
default = ["nix_tests"]
|
|
|
|
# Enables running the Nix language test suite from the original C++
|
|
|
|
# Nix implementation (at version 2.3) against Tvix.
|
|
|
|
nix_tests = []
|
|
|
|
|
2023-12-09 17:45:39 +01:00
|
|
|
[[bench]]
|
|
|
|
name = "eval"
|
|
|
|
harness = false
|