Cargo.toml

 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" }
17fs = { path = "../fs" }
18anyhow = "1.0.38"
19futures = "0.3"
20theme = { path = "../theme" }
21util = { path = "../util" }
22json_comments = "0.2"
23postage = { version = "0.4.1", features = ["futures-traits"] }
24schemars = "0.8"
25serde = { workspace = true }
26serde_json = { workspace = true }
27serde_path_to_error = "0.1.4"
28toml = "0.5"
29tree-sitter = "*"
30tree-sitter-json = "*"
31
32[dev-dependencies]
33unindent = "0.1"
34gpui = { path = "../gpui", features = ["test-support"] }
35fs = { path = "../fs", features = ["test-support"] }