2023-11-03 12:34:37 +01:00
|
|
|
[package]
|
|
|
|
name = "tvix-glue"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-30 03:01:59 +01:00
|
|
|
data-encoding = "2.3.3"
|
2023-11-03 12:34:37 +01:00
|
|
|
nix-compat = { path = "../nix-compat" }
|
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 = []}
|
|
|
|
bytes = "1.4.0"
|
|
|
|
tracing = "0.1.37"
|
|
|
|
tokio = "1.28.0"
|
|
|
|
thiserror = "1.0.38"
|
2024-01-02 13:17:02 +01:00
|
|
|
sha2 = "0.10.8"
|
2023-11-03 12:34:37 +01:00
|
|
|
|
|
|
|
[dependencies.wu-manber]
|
|
|
|
git = "https://github.com/tvlfyi/wu-manber.git"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-12-09 17:45:39 +01:00
|
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
2023-12-09 11:53:17 +01:00
|
|
|
lazy_static = "1.4.0"
|
2023-12-13 10:34:17 +01:00
|
|
|
tempfile = "3.8.1"
|
2024-01-05 15:12:35 +01:00
|
|
|
test-case = "3.3.1"
|
2023-12-09 17:45:39 +01:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "eval"
|
|
|
|
harness = false
|