zed/crates/settings/Cargo.toml

43 lines
938 B
TOML
Raw Normal View History

[package]
name = "settings"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/settings.rs"
doctest = false
[features]
test-support = ["gpui/test-support", "fs/test-support"]
[dependencies]
collections = { path = "../collections" }
gpui = { path = "../gpui" }
sqlez = { path = "../sqlez" }
fs = { path = "../fs" }
staff_mode = { path = "../staff_mode" }
util = { path = "../util" }
anyhow.workspace = true
futures.workspace = true
json_comments = "0.2"
lazy_static.workspace = true
postage.workspace = true
2023-06-06 21:46:46 +03:00
rust-embed.workspace = true
schemars.workspace = true
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
smallvec.workspace = true
toml.workspace = true
tree-sitter = "*"
tree-sitter-json = "*"
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }
2022-10-12 05:18:29 +03:00
fs = { path = "../fs", features = ["test-support"] }
pretty_assertions = "1.3.0"
unindent.workspace = true