|
@@ -241,6 +241,9 @@ pub struct WindowsSettings {
|
|
pub certificate_thumbprint: Option<String>,
|
|
pub certificate_thumbprint: Option<String>,
|
|
/// Server to use during timestamping.
|
|
/// Server to use during timestamping.
|
|
pub timestamp_url: Option<String>,
|
|
pub timestamp_url: Option<String>,
|
|
|
|
+ /// Whether to use Time-Stamp Protocol (TSP, a.k.a. RFC 3161) for the timestamp server. Your code signing provider may
|
|
|
|
+ /// use a TSP timestamp server, like e.g. SSL.com does. If so, enable TSP by setting to true.
|
|
|
|
+ pub tsp: Option<bool>,
|
|
/// WiX configuration.
|
|
/// WiX configuration.
|
|
pub wix: Option<WixSettings>,
|
|
pub wix: Option<WixSettings>,
|
|
/// The path to the application icon. Defaults to `./icons/icon.ico`.
|
|
/// The path to the application icon. Defaults to `./icons/icon.ico`.
|
|
@@ -255,6 +258,7 @@ impl Default for WindowsSettings {
|
|
digest_algorithm: None,
|
|
digest_algorithm: None,
|
|
certificate_thumbprint: None,
|
|
certificate_thumbprint: None,
|
|
timestamp_url: None,
|
|
timestamp_url: None,
|
|
|
|
+ tsp: None,
|
|
wix: None,
|
|
wix: None,
|
|
icon_path: PathBuf::from("icons/icon.ico"),
|
|
icon_path: PathBuf::from("icons/icon.ico"),
|
|
webview_fixed_runtime_path: None,
|
|
webview_fixed_runtime_path: None,
|