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