2022-04-06 00:10:17 +00:00
|
|
|
[package]
|
|
|
|
name = "settings"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-04-06 00:10:17 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/settings.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
2023-05-17 21:44:55 +00:00
|
|
|
test-support = ["gpui/test-support", "fs/test-support"]
|
2022-04-06 00:10:17 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-04-11 22:22:18 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-04-06 00:10:17 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2022-11-14 21:18:44 +00:00
|
|
|
sqlez = { path = "../sqlez" }
|
2022-10-11 23:03:38 +00:00
|
|
|
fs = { path = "../fs" }
|
2023-08-26 00:00:53 +00:00
|
|
|
feature_flags = { path = "../feature_flags" }
|
2022-04-06 00:10:17 +00:00
|
|
|
util = { path = "../util" }
|
2023-04-25 00:41:55 +00:00
|
|
|
|
2023-05-17 21:44:55 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
2023-06-19 16:29:03 +00:00
|
|
|
serde_json_lenient = {version = "0.1", features = ["preserve_order", "raw_value"]}
|
2023-05-03 02:56:45 +00:00
|
|
|
lazy_static.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
postage.workspace = true
|
2023-06-06 18:46:46 +00:00
|
|
|
rust-embed.workspace = true
|
2023-05-10 19:17:52 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-05-03 23:59:44 +00:00
|
|
|
smallvec.workspace = true
|
2023-05-17 00:45:04 +00:00
|
|
|
toml.workspace = true
|
2023-06-09 21:55:46 +00:00
|
|
|
tree-sitter.workspace = true
|
2022-10-11 00:10:42 +00:00
|
|
|
tree-sitter-json = "*"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-10-12 02:18:29 +00:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
2023-06-19 16:29:03 +00:00
|
|
|
indoc.workspace = true
|
2023-06-30 00:49:42 +00:00
|
|
|
pretty_assertions.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
unindent.workspace = true
|