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