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" }
23staff_mode = { path = "../staff_mode" }
24util = { path = "../util" }
25json_comments = "0.2"
26postage = { workspace = true }
27schemars = "0.8"
28serde = { workspace = true }
29serde_derive = { workspace = true }
30serde_json = { workspace = true }
31serde_path_to_error = "0.1.4"
32toml = "0.5"
33tree-sitter = "*"
34tree-sitter-json = "*"
35
36[dev-dependencies]
37unindent = "0.1"
38gpui = { path = "../gpui", features = ["test-support"] }
39fs = { path = "../fs", features = ["test-support"] }
40pretty_assertions = "1.3.0"