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