mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-08-04 01:58:18 +00:00
25 lines
640 B
TOML
25 lines
640 B
TOML
[workspace]
|
|
members = ["crates/*"]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
djls = { path = "crates/djls" }
|
|
djls-ast = { path = "crates/djls-ast" }
|
|
djls-django = { path = "crates/djls-django" }
|
|
djls-ipc = { path = "crates/djls-ipc" }
|
|
djls-python = { path = "crates/djls-python" }
|
|
djls-server = { path = "crates/djls-server" }
|
|
djls-worker = { path = "crates/djls-worker" }
|
|
|
|
anyhow = "1.0"
|
|
async-trait = "0.1"
|
|
prost = "0.13"
|
|
bytes = "1.9"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0"
|
|
tokio = { version = "1.42", features = ["full"] }
|
|
|
|
[profile.dev.package]
|
|
insta.opt-level = 3
|
|
similar.opt-level = 3
|