diff --git a/Cargo.lock b/Cargo.lock index 75a8ab9..a910522 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -211,9 +211,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "chrono" -version = "0.4.42" +version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118" dependencies = [ "iana-time-zone", "js-sys", diff --git a/databases/Cargo.toml b/databases/Cargo.toml index ab115af..a5d5612 100644 --- a/databases/Cargo.toml +++ b/databases/Cargo.toml @@ -9,7 +9,7 @@ phf_codegen = "0.11.3" [dependencies] parsing = { path = "../parsing" } -chrono = "0.4.40" +chrono = "0.4.43" 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 db4d747..d36a1ee 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.40" +chrono = "0.4.43" clap = { version = "4.5", features = ["derive"] } tokio = { version = "1.47.1", features = ["full"] } tower-http = { version = "0.6.6", features = ["cors", "trace"] }