zed/crates/language_selector/Cargo.toml

28 lines
644 B
TOML
Raw Normal View History

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