|
|
@ -5,7 +5,7 @@
|
|
|
|
%global crate indexmap
|
|
|
|
%global crate indexmap
|
|
|
|
|
|
|
|
|
|
|
|
Name: rust-%{crate}
|
|
|
|
Name: rust-%{crate}
|
|
|
|
Version: 0.4.1
|
|
|
|
Version: 1.0.0
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: Hash table with consistent order and fast iteration
|
|
|
|
Summary: Hash table with consistent order and fast iteration
|
|
|
|
|
|
|
|
|
|
|
@ -38,6 +38,15 @@ BuildArch: noarch
|
|
|
|
%description devel
|
|
|
|
%description devel
|
|
|
|
A hash table with consistent order and fast iteration.
|
|
|
|
A hash table with consistent order and fast iteration.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The indexmap is a hash table where the iteration order of the key-value
|
|
|
|
|
|
|
|
pairs is independent of the hash values of the keys. It has the usual
|
|
|
|
|
|
|
|
hash table functionality, it preserves insertion order except after
|
|
|
|
|
|
|
|
removals, and it allows lookup of its elements by either hash table key
|
|
|
|
|
|
|
|
or numerical index. A corresponding hash set type is also provided.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This crate was initially published under the name ordermap,
|
|
|
|
|
|
|
|
but it was renamed to indexmap.
|
|
|
|
|
|
|
|
|
|
|
|
This package contains library source intended for building other packages
|
|
|
|
This package contains library source intended for building other packages
|
|
|
|
which use %{crate} from crates.io.
|
|
|
|
which use %{crate} from crates.io.
|
|
|
|
|
|
|
|
|
|
|
@ -62,5 +71,8 @@ which use %{crate} from crates.io.
|
|
|
|
%{cargo_registry}/%{crate}-%{version}/
|
|
|
|
%{cargo_registry}/%{crate}-%{version}/
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Mon Mar 12 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.0.0-1
|
|
|
|
|
|
|
|
- Update to 1.0.0
|
|
|
|
|
|
|
|
|
|
|
|
* Sat Mar 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.4.1-1
|
|
|
|
* Sat Mar 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.4.1-1
|
|
|
|
- Initial package
|
|
|
|
- Initial package
|
|
|
|