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]
14gpui = { path = "../gpui" }
15theme = { path = "../theme" }
16util = { path = "../util" }
17anyhow = "1.0.38"
18schemars = "0.8"
19serde = { version = "1", features = ["derive", "rc"] }
20serde_json = { version = "1.0.64", features = ["preserve_order"] }
21serde_path_to_error = "0.1.4"
22toml = "0.5"