mirror of
https://github.com/zed-industries/zed.git
synced 2026-08-23 16:04:45 +00:00
29 lines
575 B
TOML
29 lines
575 B
TOML
[package]
|
|
name = "settings_json"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/settings_json.rs"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tree-sitter = { workspace = true, features = ["wasm"] }
|
|
tree-sitter-json.workspace = true
|
|
util.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_json_lenient.workspace = true
|
|
serde_path_to_error.workspace = true
|
|
|
|
[dev-dependencies]
|
|
unindent.workspace = true
|
|
pretty_assertions.workspace = true
|