Cargo.toml

 1[package]
 2name = "settings"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/settings.rs"
 9doctest = false
10
11[features]
12test-support = []
13
14[dependencies]
15assets = { path = "../assets" }
16collections = { path = "../collections" }
17gpui = { path = "../gpui" }
18sqlez = { path = "../sqlez" }
19fs = { path = "../fs" }
20anyhow = "1.0.38"
21futures = "0.3"
22theme = { path = "../theme" }
23util = { path = "../util" }
24json_comments = "0.2"
25postage = { workspace = true }
26schemars = "0.8"
27serde = { workspace = true }
28serde_derive = { version = "1.0", features = ["deserialize_in_place"] }
29serde_json = { workspace = true }
30serde_path_to_error = "0.1.4"
31toml = "0.5"
32tree-sitter = "*"
33tree-sitter-json = "*"
34
35[dev-dependencies]
36unindent = "0.1"
37gpui = { path = "../gpui", features = ["test-support"] }
38fs = { path = "../fs", features = ["test-support"] }