chore(deps): update all dependencies

This commit is contained in:
Kasper Juul Hermansen 2024-04-05 15:10:46 +00:00
parent 541b9b22d2
commit b161e19021
4 changed files with 635 additions and 294 deletions

907
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -19,19 +19,19 @@ churn-server = { path = "crates/churn-server" }
churn-domain = { path = "crates/churn-domain", version = "0.1.0" }
churn-capnp = { path = "crates/churn-capnp", version = "0.1.0" }
anyhow = { version = "1.0.71" }
anyhow = { version = "1.0.81" }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.17" }
clap = { version = "4.3.4", features = ["derive", "env"] }
tracing-subscriber = { version = "0.3.18" }
clap = { version = "4.5.4", features = ["derive", "env"] }
dotenv = { version = "0.15.0" }
axum = { version = "0.6.18", features = ["macros"] }
axum = { version = "0.7.5", features = ["macros"] }
async-trait = "*"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
reqwest = {version = "0.11.20", features = ["json"]}
uuid = {version = "1.4.1", features = ["v4", "serde"]}
itertools = {version = "0.11.0"}
reqwest = {version = "0.12.3", features = ["json"]}
uuid = {version = "1.8.0", features = ["v4", "serde"]}
itertools = {version = "0.12.1"}
sled = "0.34.7"
chrono = {version = "0.4.26", features = ["serde"]}
chrono = {version = "0.4.37", features = ["serde"]}

View File

@ -16,8 +16,8 @@ uuid.workspace = true
anyhow.workspace = true
chrono.workspace = true
capnp = "0.17.2"
capnp = "0.19.3"
[build-dependencies]
capnpc = "0.17.2"
capnpc = "0.19.0"

View File

@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dagger-sdk = "0.2.2"
dagger-sdk = "0.9.8"
dagger-rust = "0.2.0"
tokio.workspace = true
eyre = "*"