mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 19:02:07 +00:00
c065f283aa
Also, move assets folder to the top-level. Co-authored-by: Keith Simmons <keith@zed.dev>
24 lines
517 B
TOML
24 lines
517 B
TOML
[package]
|
|
name = "settings"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/settings.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
assets = { path = "../assets" }
|
|
collections = { path = "../collections" }
|
|
gpui = { path = "../gpui" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
anyhow = "1.0.38"
|
|
schemars = "0.8"
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
serde_path_to_error = "0.1.4"
|
|
toml = "0.5"
|