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 = { version = "0.4.1", features = ["futures-traits"] }
26schemars = "0.8"
27serde = { workspace = true }
28serde_json = { workspace = true }
29serde_path_to_error = "0.1.4"
30toml = "0.5"
31tree-sitter = "*"
32tree-sitter-json = "*"
33
34[dev-dependencies]
35unindent = "0.1"
36gpui = { path = "../gpui", features = ["test-support"] }
37fs = { path = "../fs", features = ["test-support"] }