set publish to false, update meta links (#258)

This commit is contained in:
Sean McArthur
2019-06-06 13:58:22 -07:00
committed by Carl Lerche
parent dc961c3e78
commit 60aceba2bb
5 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ matrix:
# #
# This job will also build and deploy the docs to gh-pages. # This job will also build and deploy the docs to gh-pages.
- env: TARGET=x86_64-unknown-linux-gnu - env: TARGET=x86_64-unknown-linux-gnu
rust: 1.15.0 rust: 1.26.0
after_success: after_success:
- | - |
pip install 'travis-cargo<0.2' --user && pip install 'travis-cargo<0.2' --user &&
+4 -3
View File
@@ -5,9 +5,8 @@ version = "0.5.0" # don't forget to update html_root_url
license = "MIT" license = "MIT"
authors = ["Carl Lerche <[email protected]>"] authors = ["Carl Lerche <[email protected]>"]
description = "Types and traits for working with bytes" description = "Types and traits for working with bytes"
documentation = "https://carllerche.github.io/bytes/bytes" documentation = "https://docs.rs/bytes"
homepage = "https://github.com/carllerche/bytes" repository = "https://github.com/tokio-rs/bytes"
repository = "https://github.com/carllerche/bytes"
readme = "README.md" readme = "README.md"
keywords = ["buffers", "zero-copy", "io"] keywords = ["buffers", "zero-copy", "io"]
exclude = [ exclude = [
@@ -19,6 +18,8 @@ exclude = [
] ]
categories = ["network-programming", "data-structures"] categories = ["network-programming", "data-structures"]
publish = false
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = ["i128"] features = ["i128"]
+2 -2
View File
@@ -3,9 +3,9 @@
A utility library for working with bytes. A utility library for working with bytes.
[![Crates.io](https://img.shields.io/crates/v/bytes.svg?maxAge=2592000)](https://crates.io/crates/bytes) [![Crates.io](https://img.shields.io/crates/v/bytes.svg?maxAge=2592000)](https://crates.io/crates/bytes)
[![Build Status](https://travis-ci.org/carllerche/bytes.svg?branch=master)](https://travis-ci.org/carllerche/bytes) [![Build Status](https://travis-ci.org/tokio-rs/bytes.svg?branch=master)](https://travis-ci.org/tokio-rs/bytes)
[Documentation](https://carllerche.github.io/bytes/bytes/index.html) [Documentation](https://docs.rs/bytes)
## Usage ## Usage
+1 -1
View File
@@ -1070,4 +1070,4 @@ impl Buf for Option<[u8; 1]> {
// The existance of this function makes the compiler catch if the Buf // The existance of this function makes the compiler catch if the Buf
// trait is "object-safe" or not. // trait is "object-safe" or not.
fn _assert_trait_object(_b: &Buf) {} fn _assert_trait_object(_b: &dyn Buf) {}
+1 -1
View File
@@ -1083,4 +1083,4 @@ impl BufMut for Vec<u8> {
// The existance of this function makes the compiler catch if the BufMut // The existance of this function makes the compiler catch if the BufMut
// trait is "object-safe" or not. // trait is "object-safe" or not.
fn _assert_trait_object(_b: &BufMut) {} fn _assert_trait_object(_b: &dyn BufMut) {}