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"] }
|
2024-12-29 19:08:13 +01:00
|
|
|
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-12-29 19:08:13 +01:00
|
|
|
pin-project.workspace = true
|
2024-08-28 23:54:46 +02:00
|
|
|
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-12-29 19:08:13 +01:00
|
|
|
tracing.workspace = true
|
|
|
|
tracing-indicatif.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
tokio-tar.workspace = true
|
2024-08-28 23:54:46 +02:00
|
|
|
tokio-util = { workspace = true, features = ["io", "io-util", "compat"] }
|
2024-12-29 19:08:13 +01:00
|
|
|
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
|
2023-11-03 12:34:37 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
criterion = { workspace = true, features = ["html_reports"] }
|
2024-12-29 19:08:13 +01:00
|
|
|
hex-literal.workspace = true
|
|
|
|
mimalloc.workspace = true
|
2024-08-28 23:54:46 +02:00
|
|
|
nix = { workspace = true, features = ["fs"] }
|
2024-12-29 19:08:13 +01:00
|
|
|
pretty_assertions.workspace = true
|
|
|
|
rstest.workspace = true
|
|
|
|
tempfile.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
|