diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-09 12:04:00 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-09 16:53:32 +0100 |
commit | 4fd2439065201916ce6a7cca8697f30fdb54368d (patch) | |
tree | dcbdf61eccf32974c40191066c968b9f066fe990 | |
parent | b5c90d02248d46711cbaf61ac8ab292a62cd9bf7 (diff) | |
download | guix-4fd2439065201916ce6a7cca8697f30fdb54368d.tar.gz |
gnu: rust-syntect: Update to 4.6.0.
* gnu/packages/crates-io.scm (rust-syntect): Update to 4.6.0.
-rw-r--r-- | gnu/packages/crates-io.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index e1ca066f71..6d351a51f9 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -54134,7 +54134,7 @@ a syntax tree of Rust source code.") (define-public rust-syntect-4 (package (name "rust-syntect") - (version "4.5.0") + (version "4.6.0") (source (origin (method url-fetch) @@ -54142,14 +54142,14 @@ a syntax tree of Rust source code.") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1r9ij3qmq4cs83jwpk1043sai1dwdghb8lwkm34rs12d7frc5yib")))) + (base32 "0cd0rbi5r83p9pqph0gyj3vgr18ihh54amv9dvh0pvl0prdq284b")))) (build-system cargo-build-system) (arguments `(#:tests? #f ;missing files #:cargo-inputs (("rust-bincode" ,rust-bincode-1) ("rust-bitflags" ,rust-bitflags-1) - ("rust-fancy-regex" ,rust-fancy-regex-0.3) + ("rust-fancy-regex" ,rust-fancy-regex-0.7) ("rust-flate2" ,rust-flate2-1) ("rust-fnv" ,rust-fnv-1) ("rust-lazy-static" ,rust-lazy-static-1) @@ -54165,7 +54165,9 @@ a syntax tree of Rust source code.") #:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3) ("rust-getopts" ,rust-getopts-0.2) - ("rust-pretty-assertions" ,rust-pretty-assertions-0.6)))) + ("rust-pretty-assertions" ,rust-pretty-assertions-0.6) + ("rust-rayon" ,rust-rayon-1) + ("rust-regex" ,rust-regex-1)))) (home-page "https://github.com/trishume/syntect") (synopsis "Library for syntax highlighting and code intelligence") (description |