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