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-06-15 00:13:31 +00:00
|
|
|
[features]
|
|
|
|
no-webrtc = ["workspace/no-webrtc"]
|
|
|
|
|
2024-02-07 20:14:50 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2024-05-24 19:44:32 +00:00
|
|
|
assistant_slash_command.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-25 21:30:48 +00:00
|
|
|
client.workspace = true
|
2024-02-07 20:14:50 +00:00
|
|
|
collections.workspace = true
|
|
|
|
fs.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
gpui.workspace = true
|
2024-07-23 22:01:05 +00:00
|
|
|
http_client.workspace = true
|
2024-07-02 23:49:20 +00:00
|
|
|
indexed_docs.workspace = true
|
2024-04-11 17:24:09 +00:00
|
|
|
isahc.workspace = true
|
2024-02-07 20:14:50 +00:00
|
|
|
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
|
2024-06-17 23:27:42 +00:00
|
|
|
paths.workspace = true
|
2024-03-02 00:00:55 +00:00
|
|
|
project.workspace = true
|
2024-05-22 23:45:34 +00:00
|
|
|
release_channel.workspace = true
|
2024-02-09 23:50:41 +00:00
|
|
|
schemars.workspace = true
|
2024-03-29 16:11:57 +00:00
|
|
|
semantic_version.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-07-10 07:40:50 +00:00
|
|
|
snippet_provider.workspace = true
|
2024-02-07 20:14:50 +00:00
|
|
|
theme.workspace = true
|
|
|
|
toml.workspace = true
|
2024-05-28 16:16:31 +00:00
|
|
|
ui.workspace = true
|
2024-03-20 21:33:26 +00:00
|
|
|
url.workspace = true
|
2024-02-07 20:14:50 +00:00
|
|
|
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-05-27 23:44:54 +00:00
|
|
|
workspace.workspace = true
|
2024-03-22 15:18:33 +00:00
|
|
|
task.workspace = true
|
|
|
|
serde_json_lenient.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"] }
|
2024-05-27 23:44:54 +00:00
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|