File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change
1
+ # 0.4.12 (March 6, 2018)
2
+
3
+ ### Added
4
+ - Implement ` FromIterator<&'a u8> ` for ` BytesMut ` /` Bytes ` (#244 ).
5
+ - Implement ` Buf ` for ` VecDeque ` (#249 ).
6
+
1
7
# 0.4.11 (November 17, 2018)
2
8
3
9
* Use raw pointers for potentially racy loads (#233 ).
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ name = "bytes"
6
6
# - Update CHANGELOG.md.
7
7
# - Update doc URL.
8
8
# - Create "v0.4.x" git tag.
9
- version = " 0.4.11 "
9
+ version = " 0.4.12 "
10
10
license = " MIT"
11
11
authors = [" Carl Lerche <me@carllerche.com>" ]
12
12
description = " Types and traits for working with bytes"
13
- documentation = " https://docs.rs/bytes/0.4.11 /bytes"
13
+ documentation = " https://docs.rs/bytes/0.4.12 /bytes"
14
14
homepage = " https://github.com/carllerche/bytes"
15
15
repository = " https://github.com/carllerche/bytes"
16
16
readme = " README.md"
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ A utility library for working with bytes.
5
5
[ ![ Crates.io] ( https://img.shields.io/crates/v/bytes.svg?maxAge=2592000 )] ( https://crates.io/crates/bytes )
6
6
[ ![ Build Status] ( https://travis-ci.org/carllerche/bytes.svg?branch=master )] ( https://travis-ci.org/carllerche/bytes )
7
7
8
- [ Documentation] ( https://carllerche.github.io /bytes/bytes/index.html )
8
+ [ Documentation] ( https://docs.rs /bytes/0.4.12/ bytes/ )
9
9
10
10
## Usage
11
11
12
12
To use ` bytes ` , first add this to your ` Cargo.toml ` :
13
13
14
14
``` toml
15
15
[dependencies ]
16
- bytes = " 0.4"
16
+ bytes = " 0.4.12 "
17
17
```
18
18
19
19
Next, add this to your crate:
@@ -30,7 +30,7 @@ Serde support is optional and disabled by default. To enable use the feature `se
30
30
31
31
``` toml
32
32
[dependencies ]
33
- bytes = { version = " 0.4" , features = [" serde" ] }
33
+ bytes = { version = " 0.4.12 " , features = [" serde" ] }
34
34
```
35
35
36
36
## License
Original file line number Diff line number Diff line change 69
69
//! and `BufMut` are infallible.
70
70
71
71
#![ deny( warnings, missing_docs, missing_debug_implementations) ]
72
- #![ doc( html_root_url = "https://docs.rs/bytes/0.4.11 " ) ]
72
+ #![ doc( html_root_url = "https://docs.rs/bytes/0.4.12 " ) ]
73
73
74
74
extern crate byteorder;
75
75
extern crate iovec;
You can’t perform that action at this time.
0 commit comments