diff --git a/Cargo.lock b/Cargo.lock index 2fb5867..262a8c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -220,9 +220,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "chrono" -version = "0.4.43" +version = "0.4.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" dependencies = [ "iana-time-zone", "js-sys", diff --git a/databases/Cargo.toml b/databases/Cargo.toml index 5b89de8..79a823b 100644 --- a/databases/Cargo.toml +++ b/databases/Cargo.toml @@ -9,7 +9,7 @@ phf_codegen = "0.13.1" [dependencies] parsing = { path = "../parsing" } -chrono = "0.4.43" +chrono = "0.4.44" nom = "7.1.3" serde = { version = "1.0.228", features = ["derive"] } phf = { version = "0.13.1", features = ["macros"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index a2ef4d8..a5def51 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -10,7 +10,7 @@ parsing = { path = "../parsing" } databases = { path = "../databases" } handlers = { path = "../handlers" } axum = { version = "0.8.1", features = ["http2", "tracing"] } -chrono = "0.4.43" +chrono = "0.4.44" clap = { version = "4.5", features = ["derive"] } tokio = { version = "1.47.1", features = ["full"] } tower-http = { version = "0.6.6", features = ["cors", "trace"] }