Skip to content

Commit

Permalink
Update tai64 to fix the wrong time offset (#2409)
Browse files Browse the repository at this point in the history
## Linked Issues/PRs
#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
  • Loading branch information
AurelienFT authored Oct 30, 2024
1 parent ba304f3 commit c72afba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 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 crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ itertools = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
tai64 = { version = "4.0", features = ["serde"] }
tai64 = { version = "4.1", features = ["serde"] }
thiserror = "1.0"
tracing = "0.1"

Expand Down
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fuel-vm-private = { workspace = true, default-features = false, features = [
rand = { workspace = true, optional = true }
secrecy = "0.8"
serde = { workspace = true, features = ["derive"], optional = true }
tai64 = { version = "4.0", features = ["serde"] }
tai64 = { version = "4.1", features = ["serde"] }
zeroize = "1.5"

[features]
Expand Down

0 comments on commit c72afba

Please sign in to comment.