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]
|
2023-05-18 00:44:55 +03:00
|
|
|
test-support = ["gpui/test-support", "fs/test-support"]
|
2022-04-06 03:10:17 +03:00
|
|
|
|
|
|
|
[dependencies]
|
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-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
|
|
|
|
2023-05-18 00:44:55 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
2023-06-19 19:29:03 +03:00
|
|
|
serde_json_lenient = {version = "0.1", features = ["preserve_order", "raw_value"]}
|
2023-05-03 05:56:45 +03:00
|
|
|
lazy_static.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
postage.workspace = true
|
2023-06-06 21:46:46 +03:00
|
|
|
rust-embed.workspace = true
|
2023-05-10 22:17:52 +03:00
|
|
|
schemars.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-05-04 02:59:44 +03:00
|
|
|
smallvec.workspace = true
|
2023-05-17 03:45:04 +03:00
|
|
|
toml.workspace = true
|
2023-06-10 00:55:46 +03:00
|
|
|
tree-sitter.workspace = true
|
2022-10-11 03:10:42 +03:00
|
|
|
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-06-19 19:29:03 +03:00
|
|
|
indoc.workspace = true
|
2023-06-30 03:49:42 +03:00
|
|
|
pretty_assertions.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
unindent.workspace = true
|