Skip to content

Commit 99af8a8

Browse files
Update tai64 to fix the wrong time offset (#2409)
## Linked Issues/PRs FuelLabs/fuel-core#2338 RustCrypto/formats#1583 RustCrypto/formats#1590 ## Description I have fixed the wrong offset and added an automation for future update in crate `tai64`(RustCrypto/formats#1583) and they merged it and made a new release (RustCrypto/formats#1590). This PR updates to the new version. ## Checklist - [x] Breaking changes are clearly marked as such in the PR description and changelog - [x] New behavior is reflected in tests - [x] [The specification](https://github.com/FuelLabs/fuel-specs/) matches the implemented behavior (link update PR if changes are needed) ### Before requesting review - [x] I have reviewed the code myself - [x] I have created follow-up issues caused by this PR and linked them here
1 parent 1cd089f commit 99af8a8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ itertools = { workspace = true }
2727
reqwest = { workspace = true }
2828
serde = { workspace = true, features = ["derive"] }
2929
serde_json = { version = "1.0", features = ["raw_value"] }
30-
tai64 = { version = "4.0", features = ["serde"] }
30+
tai64 = { version = "4.1", features = ["serde"] }
3131
thiserror = "1.0"
3232
tracing = "0.1"
3333

crates/types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ fuel-vm-private = { workspace = true, default-features = false, features = [
2727
rand = { workspace = true, optional = true }
2828
secrecy = "0.8"
2929
serde = { workspace = true, features = ["derive"], optional = true }
30-
tai64 = { version = "4.0", features = ["serde"] }
30+
tai64 = { version = "4.1", features = ["serde"] }
3131
zeroize = "1.5"
3232

3333
[features]

0 commit comments

Comments
 (0)