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" }
17theme = { path = "../theme" }
18util = { path = "../util" }
19anyhow = "1.0.38"
20json_comments = "0.2"
21schemars = "0.8"
22serde = { version = "1.0", features = ["derive", "rc"] }
23serde_json = { version = "1.0", features = ["preserve_order"] }
24serde_path_to_error = "0.1.4"
25toml = "0.5"