blob: 6e5f5c95082003e1190af8bc4f220621a4e9ec85 [file] [log] [blame]
Andrew McRaea08c48e2019-06-06 15:49:51 +10001# Copyright 2019 The Chromium OS Authors. All rights reserved.
2# Distributed under the terms of the GNU General Public License v2
3
4EAPI="6"
5
Andrew McRaea08c48e2019-06-06 15:49:51 +10006inherit cros-rust
7
Chinyue Chen4192af32019-09-11 17:33:13 +08008DESCRIPTION="A HashMap wrapper that holds key-value pairs in insertion order"
9HOMEPAGE="https://github.com/contain-rs/linked-hash-map"
10SRC_URI="https://crates.io/api/v1/crates/${PN}/${PV}/download -> ${P}.crate"
Andrew McRaea08c48e2019-06-06 15:49:51 +100011
Chinyue Chen4192af32019-09-11 17:33:13 +080012LICENSE="|| ( MIT Apache-2.0 )"
Andrew McRaea08c48e2019-06-06 15:49:51 +100013SLOT="${PV}/${PR}"
14KEYWORDS="*"
Chinyue Chen4192af32019-09-11 17:33:13 +080015
16DEPEND="
17 =dev-rust/clippy-0.0*:=
18 =dev-rust/heapsize-0.4*:=
19 =dev-rust/serde-1*:=
20 =dev-rust/serde_test-1*:=
21"