mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 12:38:02 +00:00
f2ff7fa4d5
- [x] Fill in GPL license text. - [x] live_kit_client depends on live_kit_server as non-dev dependency, even though it seems to only be used for tests. Is that an issue? Release Notes: - N/A
29 lines
594 B
TOML
29 lines
594 B
TOML
[package]
|
|
name = "ui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-only"
|
|
|
|
|
|
[lib]
|
|
name = "ui"
|
|
path = "src/ui.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
chrono = "0.4"
|
|
gpui = { path = "../gpui" }
|
|
itertools = { version = "0.11.0", optional = true }
|
|
menu = { path = "../menu"}
|
|
serde.workspace = true
|
|
settings = { path = "../settings" }
|
|
smallvec.workspace = true
|
|
story = { path = "../story", optional = true }
|
|
strum = { version = "0.25.0", features = ["derive"] }
|
|
theme = { path = "../theme" }
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
default = []
|
|
stories = ["dep:itertools", "dep:story"]
|