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"
20schemars = "0.8"
21serde = { version = "1", features = ["derive", "rc"] }
22serde_json = { version = "1.0.64", features = ["preserve_order"] }
23serde_path_to_error = "0.1.4"
24toml = "0.5"