codemp-vscode/Cargo.toml

23 lines
657 B
TOML
Raw Normal View History

2022-07-10 19:01:56 +02:00
[package]
2023-08-16 23:29:45 +02:00
name = "codemp-vscode"
version = "0.0.1"
description = "VSCode extension for CodeMP"
2022-07-10 19:01:56 +02:00
edition = "2021"
2023-08-16 23:29:45 +02:00
exclude = ["index.node"]
2022-07-10 19:01:56 +02:00
[lib]
2023-08-16 23:29:45 +02:00
crate-type = ["cdylib"]
2022-07-10 19:01:56 +02:00
[dependencies]
codemp = { git = "ssh://git@github.com/codewithotherpeopleandchangenamelater/codemp.git", tag = "v0.3" }
tracing = "0.1"
2023-08-16 23:29:45 +02:00
tracing-subscriber = "0.3"
2023-04-11 14:02:03 +02:00
uuid = { version = "1.3.1", features = ["v4"] }
2023-08-16 23:29:45 +02:00
once_cell = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmpv = "1"
clap = { version = "4.2.1", features = ["derive"] }
async-trait = "0.1.68"
neon = { version = "0.10.1", default-features = false, features = ["channel-api", "napi-6", "promise-api"] }