Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 29 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bins/nittei/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,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
Expand Down
2 changes: 1 addition & 1 deletion clients/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ reqwest = { version = "0.12", default-features = false, features = [
serde = "1"
serde_json = "1"
chrono = { version = "0.4.19", features = ["serde"] }
chrono-tz = { version = "0.8.1", features = ["serde"] }
chrono-tz = { version = "0.10.0", features = ["serde"] }
2 changes: 1 addition & 1 deletion crates/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,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"
Expand Down
2 changes: 1 addition & 1 deletion crates/api_structs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
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"] }
# TODO: Adapt this once a release is done with the JSON value changes
# https://github.com/Aleph-Alpha/ts-rs/pull/358 and https://github.com/Aleph-Alpha/ts-rs/pull/359
Expand Down
2 changes: 1 addition & 1 deletion crates/domain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
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"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/infra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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"
Expand Down