mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: rust-tls-parser-0.10: Update to 0.11.0.
* gnu/packages/crates-io.scm (rust-tls-parser-0.11): New variable. (rust-tls-parser-0.10): Remove variable.
This commit is contained in:
parent
8a8a0aee02
commit
9e4e4fcfc8
1 changed files with 16 additions and 10 deletions
|
@ -35074,10 +35074,10 @@ (define-public rust-thousands-0.2
|
||||||
(description "This package provides thousand separators for numerals.")
|
(description "This package provides thousand separators for numerals.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-tls-parser-0.10
|
(define-public rust-tls-parser-0.11
|
||||||
(package
|
(package
|
||||||
(name "rust-tls-parser")
|
(name "rust-tls-parser")
|
||||||
(version "0.10.0")
|
(version "0.11.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -35086,21 +35086,27 @@ (define-public rust-tls-parser-0.10
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1spgykvrxlzb059zzz1hzinc4vvkpixw9nd6p94vw3rimar5m68n"))))
|
"1q0vd41sjf6pbcygp5bqlpqrxbqdd0qsqi4sm5zbzvb4vvi0d4j0"))
|
||||||
|
(snippet
|
||||||
|
#~(begin (use-modules (guix build utils))
|
||||||
|
;; Accept newer versions of rust-clap.
|
||||||
|
(substitute* "Cargo.toml"
|
||||||
|
(("~2\\.33") "^2.33"))))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;; requires assets not included in crates.io tarball
|
`(#:tests? #f ;; requires assets not included in crates.io tarball
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-cookie-factory" ,rust-cookie-factory-0.3)
|
(("rust-cookie-factory" ,rust-cookie-factory-0.3)
|
||||||
("rust-enum-primitive" ,rust-enum-primitive-0.1)
|
("rust-enum-primitive" ,rust-enum-primitive-0.1)
|
||||||
("rust-nom" ,rust-nom-6)
|
("rust-nom" ,rust-nom-7)
|
||||||
("rust-nom-derive" ,rust-nom-derive-0.7)
|
("rust-nom-derive" ,rust-nom-derive-0.10)
|
||||||
("rust-phf" ,rust-phf-0.8)
|
("rust-phf" ,rust-phf-0.10)
|
||||||
("rust-phf-codegen" ,rust-phf-codegen-0.8)
|
("rust-phf-codegen" ,rust-phf-codegen-0.10)
|
||||||
("rust-rusticata-macros" ,rust-rusticata-macros-3))
|
("rust-rusticata-macros" ,rust-rusticata-macros-4))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-hex-literal" ,rust-hex-literal-0.3)
|
(("rust-clap" ,rust-clap-2)
|
||||||
("rust-pretty-assertions" ,rust-pretty-assertions-0.6))))
|
("rust-hex-literal" ,rust-hex-literal-0.3)
|
||||||
|
("rust-pretty-assertions" ,rust-pretty-assertions-0.7))))
|
||||||
(home-page "https://github.com/rusticata/tls-parser")
|
(home-page "https://github.com/rusticata/tls-parser")
|
||||||
(synopsis "Parser for the TLS protocol")
|
(synopsis "Parser for the TLS protocol")
|
||||||
(description "This package provides a Rust parser for the TLS protocol.")
|
(description "This package provides a Rust parser for the TLS protocol.")
|
||||||
|
|
Loading…
Reference in a new issue