codemp-vscode/Cargo.toml

30 lines
712 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"
[lib]
2023-08-16 23:29:45 +02:00
crate-type = ["cdylib"]
2023-09-14 23:53:13 +02:00
path = "src/rust/lib.rs"
2022-07-10 19:01:56 +02:00
[dependencies]
2023-09-08 17:57:47 +02:00
codemp = { git = "ssh://git@github.com/codewithotherpeopleandchangenamelater/codemp.git", tag = "v0.4.5", features = ["global"] }
tracing = "0.1"
2023-09-14 23:53:13 +02:00
tracing-subscriber = "0.3.17"
2023-04-11 14:02:03 +02:00
uuid = { version = "1.3.1", features = ["v4"] }
2023-08-16 23:29:45 +02:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmpv = "1"
async-trait = "0.1.68"
napi = { version = "2", features = ["full"] }
napi-derive = "2"
futures = "0.3.28"
tokio = {version = "1.32.0", features = ["full"] }
[build-dependencies]
napi-build = "2"
[profile.release]
lto = true