about summary refs log blame commit diff
path: root/tvix/cli/Cargo.toml
blob: f8101300b194dba339c9483fb35e07f30a80094f (plain) (tree)
1
2
3
4
5
6
7
8
9




                 



                    
              
                                       
                                  
                                      
                                                                          
                                
                                
               
                                                        
              
                    
                    
                  
                

                        
                                               

                  
                   
[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" }
bytes = "1.4.0"
clap = { version = "4.0", features = ["derive", "env"] }
dirs = "4.0.0"
rustyline = "10.0.0"
thiserror = "1.0.38"
tracing = "0.1.37"
tokio = "1.28.0"

[dependencies.wu-manber]
git = "https://github.com/tvlfyi/wu-manber.git"

[dev-dependencies]
test-case = "3.3.1"