2022-09-27 01:37:09 +03:00
|
|
|
[package]
|
|
|
|
name = "db"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-09-27 01:37:09 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/db.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
collections = { path = "../collections" }
|
2022-10-21 01:07:58 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2022-11-01 23:31:03 +03:00
|
|
|
sqlez = { path = "../sqlez" }
|
2022-11-29 04:42:18 +03:00
|
|
|
sqlez_macros = { path = "../sqlez_macros" }
|
2022-11-02 23:26:23 +03:00
|
|
|
util = { path = "../util" }
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2023-05-23 08:11:22 +03:00
|
|
|
indoc.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
async-trait.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
smol.workspace = true
|
2022-11-01 23:31:03 +03:00
|
|
|
|
2022-09-27 01:37:09 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
env_logger.workspace = true
|
|
|
|
tempdir.workspace = true
|