Skip to content

Commit

Permalink
build(deps): bump embed-resource from 2.5.1 to 3.0.1 (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jan 17, 2025
1 parent 6ddd694 commit 1ba898e
Show file tree
Hide file tree
Showing 3 changed files with 6 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 ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test = false
doctest = false

[target.'cfg(windows)'.build-dependencies]
embed-resource = "2.4"
embed-resource = "3.0"

[dependencies]
picky = { path = "../picky/", default-features = false, features = ["ssh", "x509", "time_conversion", "jose", "pkcs12", "pkcs7", "http_timestamp", "putty"] }
Expand Down
4 changes: 3 additions & 1 deletion ffi/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ END
let version_rc_data = generate_version_rc();
let mut file = File::create(&version_rc_file).expect("cannot create version.rc file");
file.write_all(version_rc_data.as_bytes()).unwrap();
embed_resource::compile(&version_rc_file, embed_resource::NONE);
embed_resource::compile(&version_rc_file, embed_resource::NONE)
.manifest_required()
.unwrap();
}
}

Expand Down

0 comments on commit 1ba898e

Please sign in to comment.