mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-02 20:06:58 +03:00
29 lines
650 B
TOML
29 lines
650 B
TOML
|
[package]
|
||
|
name = "extension"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
license = "GPL-3.0-or-later"
|
||
|
|
||
|
[lib]
|
||
|
path = "src/extension_store.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow.workspace = true
|
||
|
collections.workspace = true
|
||
|
fs.workspace = true
|
||
|
futures.workspace = true
|
||
|
gpui.workspace = true
|
||
|
language.workspace = true
|
||
|
parking_lot.workspace = true
|
||
|
serde.workspace = true
|
||
|
serde_json.workspace = true
|
||
|
theme.workspace = true
|
||
|
toml.workspace = true
|
||
|
util.workspace = true
|
||
|
|
||
|
[dev-dependencies]
|
||
|
fs = { workspace = true, features = ["test-support"] }
|
||
|
gpui = { workspace = true, features = ["test-support"] }
|
||
|
language = { workspace = true, features = ["test-support"] }
|