1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add rust-topological-sort@0.2.2.

* gnu/packages/crates-io.scm (rust-topological-sort-0.2): New variable.

Change-Id: I95be233077717b63f25522f65f6c534a1779e566
This commit is contained in:
Danny Milosavljevic 2025-05-20 00:38:30 +02:00
parent dc72bfc240
commit 81a2b993de
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -87942,6 +87942,25 @@ span information.")
Rust.")
(license (list license:expat license:asl2.0))))
(define-public rust-topological-sort-0.2
(package
(name "rust-topological-sort")
(version "0.2.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "topological-sort" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0gcxahg24c058izagz642vs0kfb2zja48my3qrd0kkaf2d730s7a"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t))
(home-page "https://github.com/gifnksm/topological-sort-rs")
(synopsis "Performs topological sorting")
(description "This package performs topological sorting.")
(license (list license:expat license:asl2.0))))
(define-public rust-tracing-0.1
(package
(name "rust-tracing")