mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-23 21:05:08 +00:00
We aren't making use of it in these crates and it unblocks some web-related work Release Notes: - N/A or Added/Fixed/Improved ...
34 lines
636 B
TOML
34 lines
636 B
TOML
[package]
|
|
name = "db"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/db.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
gpui.workspace = true
|
|
indoc.workspace = true
|
|
inventory.workspace = true
|
|
log.workspace = true
|
|
paths.workspace = true
|
|
release_channel.workspace = true
|
|
sqlez.workspace = true
|
|
sqlez_macros.workspace = true
|
|
util.workspace = true
|
|
uuid.workspace = true
|
|
zed_env_vars.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
tempfile.workspace = true
|