mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 02:37:05 +00:00
6cdf4e98fc
Also avoid production dependencies on fs and rope in collab
35 lines
771 B
TOML
35 lines
771 B
TOML
[package]
|
|
name = "settings"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/settings.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
assets = { path = "../assets" }
|
|
collections = { path = "../collections" }
|
|
gpui = { path = "../gpui" }
|
|
fs = { path = "../fs" }
|
|
anyhow = "1.0.38"
|
|
futures = "0.3"
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
json_comments = "0.2"
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
schemars = "0.8"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_path_to_error = "0.1.4"
|
|
toml = "0.5"
|
|
tree-sitter = "*"
|
|
tree-sitter-json = "*"
|
|
|
|
[dev-dependencies]
|
|
unindent = "0.1"
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
fs = { path = "../fs", features = ["test-support"] }
|