2024-02-07 23:14:50 +03:00
|
|
|
[package]
|
|
|
|
name = "extension"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/extension_store.rs"
|
|
|
|
|
2024-02-10 02:50:41 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "extension_json_schemas"
|
|
|
|
path = "src/extension_json_schemas.rs"
|
|
|
|
|
2024-02-07 23:14:50 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2024-02-13 22:09:02 +03:00
|
|
|
async-compression.workspace = true
|
|
|
|
async-tar.workspace = true
|
2024-03-02 03:00:55 +03:00
|
|
|
async-trait.workspace = true
|
2024-02-07 23:14:50 +03:00
|
|
|
collections.workspace = true
|
|
|
|
fs.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2024-02-13 22:09:02 +03:00
|
|
|
log.workspace = true
|
2024-03-02 03:00:55 +03:00
|
|
|
lsp.workspace = true
|
|
|
|
node_runtime.workspace = true
|
|
|
|
project.workspace = true
|
2024-02-10 02:50:41 +03:00
|
|
|
schemars.workspace = true
|
2024-02-07 23:14:50 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-13 22:09:02 +03:00
|
|
|
settings.workspace = true
|
2024-02-07 23:14:50 +03:00
|
|
|
theme.workspace = true
|
|
|
|
toml.workspace = true
|
|
|
|
util.workspace = true
|
2024-03-02 03:00:55 +03:00
|
|
|
wasmtime = { workspace = true, features = ["async"] }
|
|
|
|
wasmtime-wasi.workspace = true
|
|
|
|
wasmparser.workspace = true
|
2024-02-07 23:14:50 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
2024-03-02 03:00:55 +03:00
|
|
|
project = { workspace = true, features = ["test-support"] }
|