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
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-09-27 01:37:09 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/db.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2023-05-23 08:11:22 +03:00
|
|
|
indoc.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
release_channel.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
smol.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
sqlez.workspace = true
|
|
|
|
sqlez_macros.workspace = true
|
|
|
|
util.workspace = true
|
2022-11-01 23:31:03 +03:00
|
|
|
|
2022-09-27 01:37:09 +03:00
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
2024-01-24 20:58:09 +03:00
|
|
|
tempfile.workspace = true
|