2024-07-19 00:05:53 +02:00
|
|
|
[package]
|
|
|
|
name = "zed-discord-presence"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-07-19 15:39:02 +02:00
|
|
|
license-file = "LICENSE"
|
2024-08-07 15:57:14 +02:00
|
|
|
repository = "https://github.com/xhyrom/zed-discord-presence"
|
2024-07-19 00:05:53 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/discord_presence.rs"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
zed_extension_api = "0.0.6"
|
|
|
|
|
|
|
|
[workspace]
|
2024-07-19 06:45:10 +02:00
|
|
|
members = ["lsp"]
|
2024-07-19 15:39:02 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
[lints.clippy]
|
|
|
|
correctness = "deny"
|
|
|
|
suspicious = "warn"
|
|
|
|
complexity = "warn"
|
|
|
|
perf = "warn"
|
|
|
|
style = "deny"
|
|
|
|
pedantic = "warn"
|