Skip to content

Commit b5f76b1

Browse files
committed
Updated cargo.toml
1 parent f493646 commit b5f76b1

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ matrix:
1414
git:
1515
depth: 10
1616

17-
before_script:
18-
- chmod +x benches-compare.sh
19-
2017
script:
2118
- cargo build --verbose
2219
- cargo test --verbose

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name = "hashcow"
33
version = "0.1.0"
44
authors = ["Octavian Oncescu <octavonce@gmail.com>"]
55
edition = "2018"
6+
repository = "https://github.com/purpleprotocol/hashcow"
7+
keywords = ["cow", "hashmap"]
8+
categories = ["data-structures"]
9+
description = "A Rust HashMap implementation with copy-on-write keys and values"
10+
license = "MIT"
11+
readme = "README.md"
612

713
[dependencies]
814
hashbrown = { version = "0.1.8", features = ["rayon"] }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# HashCow
22
[![Build Status]][travis] [![Discord Badge]][Discord] [![Latest Version]][crates.io] [![Documentation]][docs.rs]
33

4-
HashCow is a HashMap implementation with copy-on-write keys and values.
4+
HashCow is a Rust HashMap implementation with copy-on-write keys and values.
55

66
---
77

0 commit comments

Comments
 (0)