Compare commits
2 commits
fix-sig-pa
...
mistress
Author | SHA1 | Date | |
---|---|---|---|
|
eb22e800a1 | ||
|
7548018491 |
3 changed files with 2 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "narinfo"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
edition = "2021"
|
||||
description = "A parser for the narinfo file format"
|
||||
repository = "https://im.badat.dev/bad/narinfo-rs"
|
||||
|
|
|
@ -49,7 +49,7 @@ impl<'a> NarInfo<'a> {
|
|||
"System" => builder.system(Some(Cow::from(value))),
|
||||
"References" => builder.references(value.split(' ').map(Cow::from).collect()),
|
||||
"Sig" => {
|
||||
sigs.push(Sig::try_from(value)?);
|
||||
sigs.push(Sig::parse(value)?);
|
||||
&mut builder
|
||||
},
|
||||
_ => return Err(ParsingError::UnknownKey { key }),
|
||||
|
|
|
@ -12,13 +12,6 @@ pub struct Sig<'a> {
|
|||
pub sig: Cow<'a, str>,
|
||||
}
|
||||
|
||||
impl<'a> TryFrom<&'a str> for Sig<'a> {
|
||||
type Error = ParsingError<'a>;
|
||||
|
||||
fn try_from(value: &'a str) -> ParsingResult<Self> {
|
||||
Sig::parse(value)
|
||||
}
|
||||
}
|
||||
// Neither the parse nor the serializa method is public since
|
||||
// it doesn't really make sense to de/serialize the
|
||||
// sig into the narinfo format outside of de/serializing a whole narinfo
|
||||
|
|
Loading…
Reference in a new issue