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
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
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]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
|
|
|
fs.workspace = true
|
2023-05-17 21:44:55 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
2023-05-03 02:56:45 +00:00
|
|
|
lazy_static.workspace = true
|
2024-07-27 15:44:40 +00:00
|
|
|
log.workspace = true
|
2024-06-17 23:27:42 +00:00
|
|
|
paths.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
release_channel.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
|
2024-01-31 16:05:22 +00:00
|
|
|
serde_json_lenient.workspace = true
|
2023-05-03 23:59:44 +00:00
|
|
|
smallvec.workspace = true
|
2024-07-24 20:38:21 +00:00
|
|
|
tree-sitter-json.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
2022-10-11 00:10:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, 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
|