2022-12-08 22:19:22 +01:00
|
|
|
[package]
|
|
|
|
name = "tvix-cli"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-12 19:40:29 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "tvix"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-12-08 22:19:22 +01:00
|
|
|
[dependencies]
|
2023-01-31 14:45:42 +01:00
|
|
|
nix-compat = { path = "../nix-compat" }
|
2024-01-16 12:14:07 +01:00
|
|
|
tvix-build = { path = "../build" }
|
2023-09-21 21:32:44 +02:00
|
|
|
tvix-castore = { path = "../castore" }
|
2023-09-26 10:09:15 +02:00
|
|
|
tvix-store = { path = "../store", default-features = false, features = []}
|
2022-12-08 22:19:22 +01:00
|
|
|
tvix-eval = { path = "../eval" }
|
2023-11-03 12:34:37 +01:00
|
|
|
tvix-glue = { path = "../glue" }
|
2024-06-06 15:44:11 +02:00
|
|
|
tvix-tracing = { path = "../tracing" }
|
2024-08-28 23:54:46 +02:00
|
|
|
bytes = { workspace = true }
|
|
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
|
|
dirs = { workspace = true }
|
|
|
|
rustyline = { workspace = true }
|
|
|
|
rnix = { workspace = true }
|
|
|
|
rowan = { workspace = true }
|
|
|
|
smol_str = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-indicatif = { workspace = true }
|
|
|
|
rustc-hash = { workspace = true }
|
|
|
|
mimalloc = { workspace = true }
|
|
|
|
wu-manber = { workspace = true }
|
2024-02-13 19:23:39 +01:00
|
|
|
|
2024-07-06 15:00:46 +02:00
|
|
|
[dev-dependencies]
|
2024-08-28 23:54:46 +02:00
|
|
|
expect-test = { workspace = true }
|
2024-07-06 15:00:46 +02:00
|
|
|
|
2024-06-14 13:17:37 +02:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
tracy = ["tvix-tracing/tracy"]
|