01aadace80
If compiled with this features, this emits packets compatible with the [Tracy](https://github.com/wolfpld/tracy) format. Change-Id: I330f5d85ab290abe51f2df38dc55464f3ccfc6cd Reviewed-on: https://cl.tvl.fyi/c/depot/+/11815 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
36 lines
838 B
TOML
36 lines
838 B
TOML
[package]
|
|
name = "tvix-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "tvix"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
nix-compat = { path = "../nix-compat" }
|
|
tvix-build = { path = "../build" }
|
|
tvix-castore = { path = "../castore" }
|
|
tvix-store = { path = "../store", default-features = false, features = []}
|
|
tvix-eval = { path = "../eval" }
|
|
tvix-glue = { path = "../glue" }
|
|
tvix-tracing = { path = "../tracing" }
|
|
bytes = "1.4.0"
|
|
clap = { version = "4.0", features = ["derive", "env"] }
|
|
dirs = "4.0.0"
|
|
rustyline = "10.0.0"
|
|
rnix = "0.11.0"
|
|
thiserror = "1.0.38"
|
|
tokio = "1.28.0"
|
|
tracing = "0.1.40"
|
|
tracing-indicatif = "0.3.6"
|
|
|
|
[dependencies.wu-manber]
|
|
git = "https://github.com/tvlfyi/wu-manber.git"
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
tikv-jemallocator = "0.5"
|
|
|
|
[features]
|
|
default = []
|
|
tracy = ["tvix-tracing/tracy"]
|