Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@ tests/fixtures/**/*.msixbundle binary
tests/fixtures/**/*.msi binary
tests/fixtures/**/*.msp binary
tests/fixtures/**/*.mst binary
tests/fixtures/**/*.nupkg binary
tests/fixtures/**/*.ocx binary
tests/fixtures/**/*.p7 binary
tests/fixtures/**/*.pfx binary
tests/fixtures/**/*.snupkg binary
tests/fixtures/**/*.sys binary
tests/fixtures/**/*.vsix binary
tests/fixtures/**/*.winmd binary
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
version:
description: Release version to build/publish (for example 0.2.0)
description: Release version to build/publish (for example 0.3.0)
required: true
type: string
publish_nuget:
Expand Down
24 changes: 15 additions & 9 deletions Cargo.lock

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

15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repository = "https://github.com/Devolutions/psign"

[package]
name = "psign"
version = "0.2.0"
version = "0.3.0"
edition = "2024"
description = "Rust port of the Windows SDK signtool.exe (Authenticode sign/verify/timestamp) with portable digest helpers."
license.workspace = true
Expand All @@ -55,12 +55,13 @@ artifact-signing-rest = ["dep:psign-codesigning-rest", "psign-digest-cli/artifac
## Portable RFC 3161 TSA HTTP POST helper under `psign-tool portable`.
timestamp-http = ["psign-digest-cli/timestamp-http"]
## Local RFC 3161 timestamp test server (`psign-server`).
timestamp-server = ["dep:cms", "dep:der", "dep:rand", "dep:rsa", "x509-cert/builder"]
timestamp-server = ["dep:cms", "dep:der", "dep:rand", "x509-cert/builder"]

[dependencies]
psign-sip-digest = { path = "crates/psign-sip-digest" }
psign-authenticode-trust = { path = "crates/psign-authenticode-trust" }
psign-digest-cli = { path = "crates/psign-digest-cli" }
psign-opc-sign = { path = "crates/psign-opc-sign" }
anyhow = "1"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
Expand All @@ -73,15 +74,16 @@ picky = { version = "7.0.0-rc.23", default-features = false, features = ["pkcs12
cms = { version = "0.2.3", features = ["builder"], optional = true }
der = { version = "0.7", features = ["derive"], optional = true }
rand = { version = "0.8", optional = true }
rsa = { version = "0.9.10", features = ["sha2"], optional = true }
rsa = { version = "0.9.10", features = ["sha2"] }
x509-cert = "0.2.5"
zip = { version = "0.6.6", default-features = false, features = ["deflate"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"], optional = true }
psign-azure-kv-rest = { path = "crates/psign-azure-kv-rest", optional = true }
psign-codesigning-rest = { path = "crates/psign-codesigning-rest", optional = true }

[target.'cfg(windows)'.dependencies]
glob = "0.3"
rayon = "1.10"
psign-azure-kv-rest = { path = "crates/psign-azure-kv-rest", optional = true }
psign-codesigning-rest = { path = "crates/psign-codesigning-rest", optional = true }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"], optional = true }
uuid = "1"
windows = { version = "0.59", features = [
"Win32_Foundation",
Expand All @@ -103,7 +105,6 @@ rand = "0.8"
rsa = { version = "0.9.10", features = ["sha2"] }
tempfile = "3"
x509-cert = { version = "0.2.5", features = ["builder"] }
zip = { version = "0.6.6", default-features = false, features = ["deflate"] }

[build-dependencies]
winresource = "0.1.31"
Expand Down
2 changes: 1 addition & 1 deletion PowerShell/Devolutions.Psign/Devolutions.Psign.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'Devolutions.Psign.psm1'
ModuleVersion = '0.2.0'
ModuleVersion = '0.3.0'
GUID = 'e6e50e4b-bf25-4ed6-a343-49f904e79f8f'
Author = 'Devolutions'
CompanyName = 'Devolutions'
Expand Down
Loading