Skip to content

Commit

Permalink
Replace lazy_static with OnceLock (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
BLYKIM committed Jul 14, 2023
1 parent a30909b commit 03f2dc6
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 69 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and
this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Replaced `lazy_static` with the new `std::sync::OnceLock`.

## [0.12.3] - 2023-07-10

### Changed
Expand Down Expand Up @@ -225,6 +231,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).

- Initial release.

[Unreleased]: https://github.com/aicers/giganto/compare/0.12.3...main
[0.12.3]: https://github.com/aicers/giganto/compare/0.12.2...0.12.3
[0.12.2]: https://github.com/aicers/giganto/compare/0.12.1...0.12.2
[0.12.1]: https://github.com/aicers/giganto/compare/0.12.0...0.12.1
Expand Down
49 changes: 24 additions & 25 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,5 @@ warp = { version = "0.3", features = ["tls"] }
x509-parser = "0.15"

[dev-dependencies]
lazy_static = "1"
tempfile = "3"
url = "2"
Loading

0 comments on commit 03f2dc6

Please sign in to comment.