nml/Cargo.toml

39 lines
724 B
TOML
Raw Normal View History

2024-04-10 12:42:24 +02:00
[package]
2024-07-19 11:52:12 +02:00
name = "nml"
2024-04-10 12:42:24 +02:00
version = "0.1.0"
edition = "2021"
2024-07-19 11:52:12 +02:00
license = "GNU AGPL3"
2024-04-10 12:42:24 +02:00
2024-07-19 11:52:12 +02:00
[[bin]]
name = "nml"
path = "src/main.rs"
[[bin]]
name = "nmlls"
path = "src/server.rs"
[profile.profiling]
inherits = "release"
debug = true
2024-04-10 12:42:24 +02:00
[dependencies]
2024-07-19 11:52:12 +02:00
ariadne = "0.4.1"
dashmap = "6.0.1"
downcast-rs = "1.2.1"
getopts = "0.2.21"
2024-07-26 20:01:10 +02:00
graphviz-rust = "0.9.0"
2024-07-19 11:52:12 +02:00
lazy_static = "1.5.0"
lsp-server = "0.7.6"
lsp-types = "0.97.0"
mlua = { version = "0.9.9", features = ["lua54", "vendored"] }
2024-04-10 12:42:24 +02:00
regex = "1.10.3"
2024-07-19 11:52:12 +02:00
rusqlite = "0.31.0"
rust-crypto = "0.2.36"
serde = "1.0.204"
serde_json = "1.0.120"
syntect = "5.2.0"
tokio = { version = "1.38.1", features = ["macros", "rt-multi-thread", "io-std"]}
tower-lsp = "0.20.0"
unicode-segmentation = "1.11.0"