mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-28 00:00:03 +00:00
Check quickinstall signatures (#1382)
* Check quickinstall signatures * e2e test * We can no longer check presence of signing section early * Improve UI a little
This commit is contained in:
parent
ee7fcb3210
commit
680accd0d3
5 changed files with 78 additions and 27 deletions
|
@ -2,7 +2,7 @@
|
|||
//!
|
||||
//! This manifest defines how a particular binary crate may be installed by Binstall.
|
||||
|
||||
use std::collections::BTreeMap;
|
||||
use std::{borrow::Cow, collections::BTreeMap};
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
|
@ -127,7 +127,7 @@ pub struct PkgSigning {
|
|||
pub algorithm: SigningAlgorithm,
|
||||
|
||||
/// Signing public key
|
||||
pub pubkey: String,
|
||||
pub pubkey: Cow<'static, str>,
|
||||
|
||||
/// Signature file override template (url to download)
|
||||
#[serde(default)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue