aboutsummaryrefslogblamecommitdiff
path: root/Cargo.toml
blob: 3f3d1cff9326ddf09a7744c262e4bbca340e8465 (plain) (tree)
1
2
3
4
5
6
7
8
9
           
              
           
                 


                    
                    
                    
                  
                  

                         
                           
 
 

                                
                        
                                                               







                                                                                  
                                                           
 

             


                 
[workspace]
resolver = "2"
members = [
	"src/db",
	"src/util",
	"src/rpc",
	"src/table",
	"src/block",
	"src/model",
	"src/api",
	"src/web",
	"src/garage",
	"src/k2v-client",
	"src/format-table",
]

default-members = ["src/garage"]

[workspace.dependencies]
format_table = { version = "0.1.1", path = "src/format-table" }
garage_api = { version = "0.8.5", path = "src/api" }
garage_block = { version = "0.8.5", path = "src/block" }
garage_db = { version = "0.8.5", path = "src/db", default-features = false }
garage_model = { version = "0.8.5", path = "src/model", default-features = false }
garage_rpc = { version = "0.8.5", path = "src/rpc" }
garage_table = { version = "0.8.5", path = "src/table" }
garage_util = { version = "0.8.5", path = "src/util" }
garage_web = { version = "0.8.5", path = "src/web" }
k2v-client = { version = "0.0.4", path = "src/k2v-client" }

[profile.dev]
lto = "off"

[profile.release]
debug = true