Skip to content

Commit

Permalink
Update bytes (yanked), handlebars, and directly depend on semver
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Aug 10, 2024
1 parent 7b08ebe commit c74314f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
### Changed
- [PR#251](https://github.com/EmbarkStudios/cargo-about/pull/251) updated crates and directly depend on `semver`.

## [0.6.2] - 2024-05-31
### Changed
- [PR#248](https://github.com/EmbarkStudios/cargo-about/pull/248) updated crates.
Expand Down
9 changes: 5 additions & 4 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ codespan-reporting = "0.11"
# Logging helpers
fern = "0.6"
# Template engine for output
handlebars = { version = "5.1", features = ["dir_source"] }
handlebars = { version = "6.0", features = ["dir_source"] }
# $HOME retrieval
home = "0.5"
# Directory walking
Expand All @@ -69,6 +69,8 @@ ring = "0.17"
# Oh gee what could it be
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Used for checking version requirements
semver = { version = "1.0", features = ["serde"] }
# License expression parsing and evaluation
spdx = { version = "0.10", features = ["text"] }
# Log timestamps
Expand Down
2 changes: 1 addition & 1 deletion src/licenses/workarounds/ring.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use super::ClarificationFile;
use anyhow::Context as _;
use krates::cm::semver::Version;
use semver::Version;

pub fn get(krate: &crate::Krate) -> anyhow::Result<Option<super::Clarification>> {
if krate.name != "ring" {
Expand Down

0 comments on commit c74314f

Please sign in to comment.