Cargo.toml

 1[package]
 2name = "pando"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/pando.rs"
 9
10[features]
11test-support = []
12
13[dependencies]
14anyhow = "1.0.38"
15client = { path = "../client" }
16gpui = { path = "../gpui" }
17settings = { path = "../settings" }
18theme = { path = "../theme" }
19workspace = { path = "../workspace" }
20sqlez = { path = "../sqlez" }
21sqlez_macros = { path = "../sqlez_macros" }