-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (24 loc) · 706 Bytes
/
Cargo.toml
File metadata and controls
30 lines (24 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
edition = "2021"
name = "lapce-plugin-csharp"
version = "2.0.0"
resolver = "2"
[target.'cfg(target_os = "wasi")'.dependencies]
# plugin deps
# for unpacking zip
# zip = { version = "0.6", default-features = false, features = ["deflate"] }
# for unpacking tar/gz
# flate2 = { version = "1.0" }
# default deps for all lapce plugins
anyhow = "1.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
lapce-plugin = { git = "https://github.com/lapce/lapce-plugin-rust.git" }
# lapce-plugin = { git = "https://github.com/panekj/lapce-plugin-rust.git", branch = "volt" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[dependencies]
chrono = "0.4.24"