diff --git a/Cargo.toml b/Cargo.toml index faa7d4e..4b13ee7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,8 @@ djls-python = { path = "crates/djls-python" } djls-worker = { path = "crates/djls-worker" } anyhow = "1.0.94" +async-trait = "0.1.83" serde = { version = "1.0.215", features = ["derive"] } serde_json = "1.0.133" +thiserror = "2.0.6" tokio = { version = "1.42.0", features = ["full"] } diff --git a/crates/djls-ast/Cargo.toml b/crates/djls-ast/Cargo.toml index 0387ae8..ef2ea24 100644 --- a/crates/djls-ast/Cargo.toml +++ b/crates/djls-ast/Cargo.toml @@ -5,8 +5,7 @@ edition = "2021" [dependencies] serde = { workspace = true } - -thiserror = "2.0.6" +thiserror = { workspace = true } [dev-dependencies] insta = { version = "1.41.1", features = ["yaml"] } diff --git a/crates/djls-django/Cargo.toml b/crates/djls-django/Cargo.toml index b1b5840..40c30e7 100644 --- a/crates/djls-django/Cargo.toml +++ b/crates/djls-django/Cargo.toml @@ -8,5 +8,4 @@ djls-python = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } - -thiserror = "2.0.4" +thiserror = { workspace = true } diff --git a/crates/djls-python/Cargo.toml b/crates/djls-python/Cargo.toml index 7bd032f..90756a3 100644 --- a/crates/djls-python/Cargo.toml +++ b/crates/djls-python/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" [dependencies] serde = { workspace = true } serde_json = { workspace = true } +thiserror = { workspace = true } -thiserror = "2.0.4" which = "7.0.0" diff --git a/crates/djls-worker/Cargo.toml b/crates/djls-worker/Cargo.toml index bcbdebc..9f8296d 100644 --- a/crates/djls-worker/Cargo.toml +++ b/crates/djls-worker/Cargo.toml @@ -5,6 +5,5 @@ edition = "2021" [dependencies] anyhow = { workspace = true } +async-trait = { workspace = true } tokio = { workspace = true } - -async-trait = "0.1.83"