Skip to content

Commit 538d149

Browse files
authored
Merge pull request #77 from lzutao/refresh-doc
Automatically refresh gh-page to hashbrown crate doc
2 parents 454d208 + 70afa1b commit 538d149

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ matrix:
1212
script: sh ci/tools.sh
1313
- name: "docs"
1414
env: TARGET=x86_64-unknown-linux-gnu
15-
script: cargo -vv doc --features nightly,serde,rayon
15+
script:
16+
- cargo -vv doc --features nightly,serde,rayon
17+
- echo '<meta http-equiv=refresh content=0;url=hashbrown/index.html>' > target/doc/index.html
1618
deploy:
1719
provider: pages
1820
skip-cleanup: true

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ hashbrown
33

44
[![Build Status](https://travis-ci.com/rust-lang/hashbrown.svg?branch=master)](https://travis-ci.com/rust-lang/hashbrown)
55
[![Crates.io](https://img.shields.io/crates/v/hashbrown.svg)](https://crates.io/crates/hashbrown)
6+
[![Documentation](https://docs.rs/hashbrown/badge.svg)](https://docs.rs/hashbrown)
67

78
This crate is a Rust port of Google's high-performance [SwissTable] hash
89
map, adapted to make it a drop-in replacement for Rust's standard `HashMap`
@@ -15,8 +16,6 @@ The original C++ version of SwissTable can be found [here], and this
1516
[here]: https://github.com/abseil/abseil-cpp/blob/master/absl/container/internal/raw_hash_set.h
1617
[CppCon talk]: https://www.youtube.com/watch?v=ncHmEUmJZf4
1718

18-
## [Documentation](https://docs.rs/hashbrown)
19-
2019
## [Change log](CHANGELOG.md)
2120

2221
## Features

0 commit comments

Comments
 (0)