ea7d63e177
This type allows for temporarily compatibility with the C++ Nix store, specifically (for now) it gives us the store directory used by Nix and imports files the same way. Change-Id: I4767794ef2863eba49661315c63c4e17de946d60 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7587 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
15 lines
266 B
TOML
15 lines
266 B
TOML
[package]
|
|
name = "tvix-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "tvix"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tvix-eval = { path = "../eval" }
|
|
rustyline = "10.0.0"
|
|
clap = { version = "4.0", features = ["derive", "env"] }
|
|
dirs = "4.0.0"
|
|
smol_str = "0.1"
|