mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-19 00:00:12 +02:00
set publish to false, update meta links (#258)
This commit is contained in:
committed by
Carl Lerche
parent
dc961c3e78
commit
60aceba2bb
+1
-1
@@ -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
@@ -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"]
|
||||||
|
|
||||||
|
|||||||
@@ -3,9 +3,9 @@
|
|||||||
A utility library for working with bytes.
|
A utility library for working with bytes.
|
||||||
|
|
||||||
[](https://crates.io/crates/bytes)
|
[](https://crates.io/crates/bytes)
|
||||||
[](https://travis-ci.org/carllerche/bytes)
|
[](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
@@ -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
@@ -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) {}
|
||||||
|
|||||||
Reference in New Issue
Block a user