Skip to content

Commit

Permalink
Merge pull request #77 from lzutao/refresh-doc
Browse files Browse the repository at this point in the history
Automatically refresh gh-page to hashbrown crate doc
  • Loading branch information
Amanieu authored Apr 27, 2019
2 parents 454d208 + 70afa1b commit 538d149
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ matrix:
script: sh ci/tools.sh
- name: "docs"
env: TARGET=x86_64-unknown-linux-gnu
script: cargo -vv doc --features nightly,serde,rayon
script:
- cargo -vv doc --features nightly,serde,rayon
- echo '<meta http-equiv=refresh content=0;url=hashbrown/index.html>' > target/doc/index.html
deploy:
provider: pages
skip-cleanup: true
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ hashbrown

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

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

## [Documentation](https://docs.rs/hashbrown)

## [Change log](CHANGELOG.md)

## Features
Expand Down

0 comments on commit 538d149

Please sign in to comment.