move thiserror and async-tract to workspace dependencies (#15)

This commit is contained in:
Josh Thomas 2024-12-10 14:13:53 -06:00 committed by GitHub
parent 425649d459
commit fbe3fbd493
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 additions and 7 deletions

View file

@ -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"] }

View file

@ -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"] }

View file

@ -8,5 +8,4 @@ djls-python = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = "2.0.4"
thiserror = { workspace = true }

View file

@ -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"

View file

@ -5,6 +5,5 @@ edition = "2021"
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
tokio = { workspace = true }
async-trait = "0.1.83"