Skip to content

Commit cad5319

Browse files
authored
Merge pull request #70 from lzutao/patch-1
README: Update Travis link
2 parents 7e79b0c + af2d3ec commit cad5319

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: rust
2-
sudo: false
32
rust: nightly
43

54
matrix:
5+
fast_finish: true
66
include:
77
- name: "miri"
88
env: TARGET=x86_64-unknown-linux-gnu

CHANGELOG.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
101101

102102
- Initial release
103103

104-
[Unreleased]: https://github.com/Amanieu/hashbrown/compare/v0.3.0...HEAD
105-
[v0.3.0]: https://github.com/Amanieu/hashbrown/compare/v0.2.2...v0.3.0
106-
[v0.2.2]: https://github.com/Amanieu/hashbrown/compare/v0.2.1...v0.2.2
107-
[v0.2.1]: https://github.com/Amanieu/hashbrown/compare/v0.2.0...v0.2.1
108-
[v0.2.0]: https://github.com/Amanieu/hashbrown/compare/v0.1.8...v0.2.0
109-
[v0.1.8]: https://github.com/Amanieu/hashbrown/compare/v0.1.7...v0.1.8
110-
[v0.1.7]: https://github.com/Amanieu/hashbrown/compare/v0.1.6...v0.1.7
111-
[v0.1.6]: https://github.com/Amanieu/hashbrown/compare/v0.1.5...v0.1.6
112-
[v0.1.5]: https://github.com/Amanieu/hashbrown/compare/v0.1.4...v0.1.5
113-
[v0.1.4]: https://github.com/Amanieu/hashbrown/compare/v0.1.3...v0.1.4
114-
[v0.1.3]: https://github.com/Amanieu/hashbrown/compare/v0.1.2...v0.1.3
115-
[v0.1.2]: https://github.com/Amanieu/hashbrown/compare/v0.1.1...v0.1.2
116-
[v0.1.1]: https://github.com/Amanieu/hashbrown/compare/v0.1.0...v0.1.1
104+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.3.0...HEAD
105+
[v0.3.0]: https://github.com/rust-lang/hashbrown/compare/v0.2.2...v0.3.0
106+
[v0.2.2]: https://github.com/rust-lang/hashbrown/compare/v0.2.1...v0.2.2
107+
[v0.2.1]: https://github.com/rust-lang/hashbrown/compare/v0.2.0...v0.2.1
108+
[v0.2.0]: https://github.com/rust-lang/hashbrown/compare/v0.1.8...v0.2.0
109+
[v0.1.8]: https://github.com/rust-lang/hashbrown/compare/v0.1.7...v0.1.8
110+
[v0.1.7]: https://github.com/rust-lang/hashbrown/compare/v0.1.6...v0.1.7
111+
[v0.1.6]: https://github.com/rust-lang/hashbrown/compare/v0.1.5...v0.1.6
112+
[v0.1.5]: https://github.com/rust-lang/hashbrown/compare/v0.1.4...v0.1.5
113+
[v0.1.4]: https://github.com/rust-lang/hashbrown/compare/v0.1.3...v0.1.4
114+
[v0.1.3]: https://github.com/rust-lang/hashbrown/compare/v0.1.2...v0.1.3
115+
[v0.1.2]: https://github.com/rust-lang/hashbrown/compare/v0.1.1...v0.1.2
116+
[v0.1.1]: https://github.com/rust-lang/hashbrown/compare/v0.1.0...v0.1.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.3.0"
44
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
55
description = "A Rust port of Google's SwissTable hash map"
66
license = "Apache-2.0/MIT"
7-
repository = "https://github.com/Amanieu/hashbrown"
7+
repository = "https://github.com/rust-lang/hashbrown"
88
readme = "README.md"
99
keywords = ["hash", "no_std", "hashmap", "swisstable"]
1010
categories = ["data-structures", "no-std"]

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
hashbrown
22
=========
33

4-
[![Build Status](https://travis-ci.com/Amanieu/hashbrown.svg?branch=master)](https://travis-ci.com/Amanieu/hashbrown) [![Crates.io](https://img.shields.io/crates/v/hashbrown.svg)](https://crates.io/crates/hashbrown)
4+
[![Build Status](https://travis-ci.com/rust-lang/hashbrown.svg?branch=master)](https://travis-ci.com/rust-lang/hashbrown)
5+
[![Crates.io](https://img.shields.io/crates/v/hashbrown.svg)](https://crates.io/crates/hashbrown)
56

67
This crate is a Rust port of Google's high-performance [SwissTable] hash
78
map, adapted to make it a drop-in replacement for Rust's standard `HashMap`

0 commit comments

Comments
 (0)