diff --git a/Cargo.lock b/Cargo.lock index 4c81e01e..334867f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -656,7 +656,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d59ae0466b83e838b81a54256c39d5d7c20b9d7daa10510a242d9b75abd5936e" dependencies = [ "chrono", - "chrono-tz-build", + "chrono-tz-build 0.2.1", + "phf", +] + +[[package]] +name = "chrono-tz" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd6dd8046d00723a59a2f8c5f295c515b9bb9a331ee4f8f3d4dd49e428acd3b6" +dependencies = [ + "chrono", + "chrono-tz-build 0.4.0", "phf", "serde", ] @@ -672,6 +683,16 @@ dependencies = [ "phf_codegen", ] +[[package]] +name = "chrono-tz-build" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94fea34d77a245229e7746bd2beb786cd2a896f306ff491fb8cecb3074b10a7" +dependencies = [ + "parse-zoneinfo", + "phf_codegen", +] + [[package]] name = "colorchoice" version = "1.0.2" @@ -1735,7 +1756,7 @@ dependencies = [ "actix-web", "anyhow", "chrono", - "chrono-tz", + "chrono-tz 0.10.0", "futures", "nittei_api", "nittei_domain", @@ -1765,7 +1786,7 @@ dependencies = [ "async-trait", "awc", "chrono", - "chrono-tz", + "chrono-tz 0.10.0", "futures", "jsonwebtoken", "nittei_api_structs", @@ -1786,7 +1807,7 @@ name = "nittei_api_structs" version = "0.3.1" dependencies = [ "chrono", - "chrono-tz", + "chrono-tz 0.10.0", "nittei_domain", "serde", "serde_urlencoded", @@ -1801,7 +1822,7 @@ version = "0.2.1" dependencies = [ "anyhow", "chrono", - "chrono-tz", + "chrono-tz 0.10.0", "itertools", "jsonwebtoken", "nittei_utils", @@ -1822,7 +1843,7 @@ dependencies = [ "anyhow", "async-trait", "chrono", - "chrono-tz", + "chrono-tz 0.10.0", "futures", "nittei_domain", "nittei_utils", @@ -1840,7 +1861,7 @@ name = "nittei_sdk" version = "0.4.1" dependencies = [ "chrono", - "chrono-tz", + "chrono-tz 0.10.0", "nittei_api_structs", "nittei_domain", "reqwest 0.12.4", @@ -2595,7 +2616,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa903a94a0360e2b693d30028605c10105c5a830e6fc39d489dd3cc4e05f1cac" dependencies = [ "chrono", - "chrono-tz", + "chrono-tz 0.8.6", "lazy_static", "log", "regex", diff --git a/bins/nittei/Cargo.toml b/bins/nittei/Cargo.toml index b34439ef..10358858 100644 --- a/bins/nittei/Cargo.toml +++ b/bins/nittei/Cargo.toml @@ -41,7 +41,7 @@ opentelemetry-datadog = { version = "0.11.0", features = ["reqwest-client"] } openssl-probe = "0.1.2" chrono = "0.4.19" -chrono-tz = "0.8.1" +chrono-tz = "0.10.0" # Use Jemalloc only for musl-64 bits platforms # The default MUSL allocator is known to be slower than Jemalloc diff --git a/clients/rust/Cargo.toml b/clients/rust/Cargo.toml index ac643713..b889fb51 100644 --- a/clients/rust/Cargo.toml +++ b/clients/rust/Cargo.toml @@ -21,4 +21,4 @@ reqwest = { version = "0.12", default-features = false, features = [ ] } serde = "1" chrono = { version = "0.4.19", features = ["serde"] } -chrono-tz = { version = "0.8.1", features = ["serde"] } +chrono-tz = { version = "0.10.0", features = ["serde"] } diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index c4be618a..78cedf0d 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -23,7 +23,7 @@ awc = "3.5" async-trait = "0.1.83" rrule = "0.12.0" chrono = { version = "0.4.19", features = ["serde"] } -chrono-tz = "0.8.1" +chrono-tz = "0.10.0" anyhow = "1.0" jsonwebtoken = "7" thiserror = "1.0" diff --git a/crates/api_structs/Cargo.toml b/crates/api_structs/Cargo.toml index 23c021ff..7810dfae 100644 --- a/crates/api_structs/Cargo.toml +++ b/crates/api_structs/Cargo.toml @@ -16,7 +16,7 @@ nittei_domain = { workspace = true } serde = { version = "1.0", features = ["derive"] } validator = { version = "0.18", features = ["derive"] } chrono = { version = "0.4.19", features = ["serde"] } -chrono-tz = { version = "0.8.1", features = ["serde"] } +chrono-tz = { version = "0.10.0", features = ["serde"] } uuid = { version = "1.1.2", features = ["serde"] } ts-rs = { version = "10.0", features = ["uuid-impl", "chrono-impl"] } diff --git a/crates/domain/Cargo.toml b/crates/domain/Cargo.toml index 106e6e2e..458125ee 100644 --- a/crates/domain/Cargo.toml +++ b/crates/domain/Cargo.toml @@ -16,7 +16,7 @@ nittei_utils = { workspace = true } serde = { version = "1.0", features = ["derive"] } rrule = "0.12.0" chrono = { version = "0.4.19", features = ["serde"] } -chrono-tz = { version = "0.8.1", features = ["serde"] } +chrono-tz = { version = "0.10.0", features = ["serde"] } anyhow = "1.0" url = "2.3.0" uuid = { version = "1.1.2", features = ["serde", "v4"] } diff --git a/crates/infra/Cargo.toml b/crates/infra/Cargo.toml index 0dbbc057..c9d2619a 100644 --- a/crates/infra/Cargo.toml +++ b/crates/infra/Cargo.toml @@ -16,7 +16,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" async-trait = "0.1.83" chrono = { version = "0.4.19", features = ["serde"] } -chrono-tz = { version = "0.8.1", features = ["serde"] } +chrono-tz = { version = "0.10.0", features = ["serde"] } anyhow = "1.0" tokio = { version = "1", features = ["macros"] } tracing = "0.1.25"