mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-17 23:56:55 +00:00
43 lines
1 KiB
TOML
43 lines
1 KiB
TOML
|
[package]
|
||
|
name = "settings2"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[lib]
|
||
|
path = "src/settings2.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[features]
|
||
|
test-support = ["gpui2/test-support", "fs/test-support"]
|
||
|
|
||
|
[dependencies]
|
||
|
collections = { path = "../collections" }
|
||
|
gpui2 = { path = "../gpui2" }
|
||
|
sqlez = { path = "../sqlez" }
|
||
|
fs = { path = "../fs" }
|
||
|
feature_flags = { path = "../feature_flags" }
|
||
|
util = { path = "../util" }
|
||
|
|
||
|
anyhow.workspace = true
|
||
|
futures.workspace = true
|
||
|
serde_json_lenient = {version = "0.1", features = ["preserve_order", "raw_value"]}
|
||
|
lazy_static.workspace = true
|
||
|
postage.workspace = true
|
||
|
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.workspace = true
|
||
|
tree-sitter-json = "*"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
gpui2 = { path = "../gpui2", features = ["test-support"] }
|
||
|
fs = { path = "../fs", features = ["test-support"] }
|
||
|
indoc.workspace = true
|
||
|
pretty_assertions.workspace = true
|
||
|
unindent.workspace = true
|