diff options
Diffstat (limited to 'tvix/cli/Cargo.toml')
-rw-r--r-- | tvix/cli/Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tvix/cli/Cargo.toml b/tvix/cli/Cargo.toml new file mode 100644 index 000000000000..676da02a07a2 --- /dev/null +++ b/tvix/cli/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "tvix-cli" +version = "0.1.0" +edition = "2021" + +[[bin]] +name = "tvix" +path = "src/main.rs" + +[dependencies] +nix-compat = { path = "../nix-compat" } +tvix-store = { path = "../store" } +tvix-eval = { path = "../eval" } +rustyline = "10.0.0" +clap = { version = "4.0", features = ["derive", "env"] } +dirs = "4.0.0" +smol_str = "0.2.0" +ssri = "7.0.0" +data-encoding = "2.3.3" +thiserror = "1.0.38" + +[dependencies.wu-manber] +git = "https://github.com/tvlfyi/wu-manber.git" |