aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2020-11-09 15:55:01 -0800
committerChih-Hung Hsieh <chh@google.com>2020-11-09 16:04:47 -0800
commite93fbab9e5ecd7e5057cde0271aa775c0dee8710 (patch)
tree50069180fea404c5247eb6b933c6836cda6f2857 /Cargo.toml.orig
parentf9571b675554e0cc4c2a37e68df0b78a40f5c027 (diff)
downloadhashlink-e93fbab9e5ecd7e5057cde0271aa775c0dee8710.tar.gz
Import hashlink-0.6.0
* Add Android.bp, OWNERS, METADATA and other 3p package required files. Bug: 171754295 Test: build all rust crates. Change-Id: Id6544f49b77a3edd0ee9e691e2dc1124dbf65f0a
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig24
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..6ad661b
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,24 @@
+[package]
+name = "hashlink"
+version = "0.6.0"
+authors = ["kyren <kerriganw@gmail.com>"]
+edition = "2018"
+description = "HashMap-like containers that hold their key-value pairs in a user controllable order"
+repository = "https://github.com/kyren/hashlink"
+documentation = "https://docs.rs/hashlink"
+readme = "README.md"
+keywords = ["data-structures"]
+license = "MIT OR Apache-2.0"
+
+[badges]
+circle-ci = { repository = "kyren/hashlink", branch = "master" }
+
+[features]
+serde_impl = ["serde"]
+
+[dependencies]
+hashbrown = "0.9.0"
+serde = { version = "1.0", optional = true }
+
+[dev-dependencies]
+serde_test = "1.0"