2022-04-06 03:10:17 +03:00
|
|
|
[package]
|
|
|
|
name = "settings"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-04-06 03:10:17 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/settings.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-12 01:54:52 +03:00
|
|
|
assets = { path = "../assets" }
|
2022-04-12 01:22:18 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-04-06 03:10:17 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2022-11-15 00:18:44 +03:00
|
|
|
sqlez = { path = "../sqlez" }
|
2022-10-12 02:03:38 +03:00
|
|
|
fs = { path = "../fs" }
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
2022-04-06 03:10:17 +03:00
|
|
|
theme = { path = "../theme" }
|
2023-04-04 07:38:26 +03:00
|
|
|
staff_mode = { path = "../staff_mode" }
|
2022-04-06 03:10:17 +03:00
|
|
|
util = { path = "../util" }
|
2023-04-25 03:41:55 +03:00
|
|
|
|
2022-04-21 21:58:18 +03:00
|
|
|
json_comments = "0.2"
|
2023-04-25 03:41:55 +03:00
|
|
|
postage.workspace = true
|
2022-04-06 03:10:17 +03:00
|
|
|
schemars = "0.8"
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2022-04-06 03:10:17 +03:00
|
|
|
serde_path_to_error = "0.1.4"
|
|
|
|
toml = "0.5"
|
2022-10-11 03:10:42 +03:00
|
|
|
tree-sitter = "*"
|
|
|
|
tree-sitter-json = "*"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-10-12 05:18:29 +03:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
|
2023-03-30 07:31:33 +03:00
|
|
|
pretty_assertions = "1.3.0"
|
2023-04-25 03:41:55 +03:00
|
|
|
unindent.workspace = true
|