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