2022-04-06 00:10:17 +00:00
|
|
|
[package]
|
|
|
|
name = "settings"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/settings.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-11 22:54:52 +00:00
|
|
|
assets = { path = "../assets" }
|
2022-04-11 22:22:18 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-04-06 00:10:17 +00:00
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
theme = { path = "../theme" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
anyhow = "1.0.38"
|
2022-04-21 18:58:18 +00:00
|
|
|
json_comments = "0.2"
|
2022-04-06 00:10:17 +00:00
|
|
|
schemars = "0.8"
|
2022-05-31 09:16:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2022-05-26 07:34:39 +00:00
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
2022-04-06 00:10:17 +00:00
|
|
|
serde_path_to_error = "0.1.4"
|
|
|
|
toml = "0.5"
|