2024-02-07 20:14:50 +00:00
|
|
|
[package]
|
|
|
|
name = "extension"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2024-02-07 20:14:50 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/extension_store.rs"
|
2024-03-11 18:35:27 +00:00
|
|
|
doctest = false
|
2024-02-07 20:14:50 +00:00
|
|
|
|
2024-02-09 23:50:41 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "extension_json_schemas"
|
|
|
|
path = "src/extension_json_schemas.rs"
|
|
|
|
|
2024-02-07 20:14:50 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2024-02-13 19:09:02 +00:00
|
|
|
async-compression.workspace = true
|
|
|
|
async-tar.workspace = true
|
2024-03-02 00:00:55 +00:00
|
|
|
async-trait.workspace = true
|
2024-03-08 16:49:27 +00:00
|
|
|
cap-std.workspace = true
|
2024-02-07 20:14:50 +00:00
|
|
|
collections.workspace = true
|
|
|
|
fs.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2024-02-13 19:09:02 +00:00
|
|
|
log.workspace = true
|
2024-03-02 00:00:55 +00:00
|
|
|
lsp.workspace = true
|
|
|
|
node_runtime.workspace = true
|
|
|
|
project.workspace = true
|
2024-02-09 23:50:41 +00:00
|
|
|
schemars.workspace = true
|
2024-02-07 20:14:50 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-13 19:09:02 +00:00
|
|
|
settings.workspace = true
|
2024-02-07 20:14:50 +00:00
|
|
|
theme.workspace = true
|
|
|
|
toml.workspace = true
|
|
|
|
util.workspace = true
|
2024-03-08 22:18:06 +00:00
|
|
|
wasm-encoder.workspace = true
|
|
|
|
wasmtime.workspace = true
|
2024-03-02 00:00:55 +00:00
|
|
|
wasmtime-wasi.workspace = true
|
|
|
|
wasmparser.workspace = true
|
2024-03-06 23:35:22 +00:00
|
|
|
wit-component.workspace = true
|
2024-02-07 20:14:50 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-03-08 16:49:27 +00:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
|
2024-02-07 20:14:50 +00:00
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
2024-03-02 00:00:55 +00:00
|
|
|
project = { workspace = true, features = ["test-support"] }
|