zed/crates/language_selector/Cargo.toml

29 lines
677 B
TOML
Raw Normal View History

[package]
name = "language_selector"
version = "0.1.0"
edition = "2021"
publish = false
license = "AGPL-3.0-only"
license-file = "../../LICENSE-AGPL"
[lib]
path = "src/language_selector.rs"
doctest = false
[dependencies]
editor = { path = "../editor" }
fuzzy = { path = "../fuzzy" }
language = { path = "../language" }
gpui = { path = "../gpui" }
picker = { path = "../picker" }
project = { path = "../project" }
theme = { path = "../theme" }
ui = { path = "../ui" }
settings = { path = "../settings" }
util = { path = "../util" }
workspace = { path = "../workspace" }
anyhow.workspace = true
2023-05-20 15:54:38 +00:00
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }