Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bytes-sgx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Markus Becker
bytes-sgx
Commits
fe6e6738
Commit
fe6e6738
authored
5 years ago
by
Sean McArthur
Browse files
Options
Downloads
Patches
Plain Diff
v0.5.4
parent
f330ef6c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+12
-0
12 additions, 0 deletions
CHANGELOG.md
Cargo.toml
+1
-1
1 addition, 1 deletion
Cargo.toml
src/lib.rs
+1
-1
1 addition, 1 deletion
src/lib.rs
with
14 additions
and
2 deletions
CHANGELOG.md
+
12
−
0
View file @
fe6e6738
# 0.5.4 (January 23, 2020)
### Added
-
Make
`Bytes::new`
a
`const fn`
.
-
Add
`From<BytesMut>`
for
`Bytes`
.
### Fix
-
Fix reversed arguments in
`PartialOrd`
for
`Bytes`
.
-
Fix
`Bytes::truncate`
losing original capacity when repr is an unshared
`Vec`
.
-
Fix
`Bytes::from(Vec)`
when allocator gave
`Vec`
a pointer with LSB set.
-
Fix panic in
`Bytes::slice_ref`
if argument is an empty slice.
# 0.5.3 (December 12, 2019)
### Added
...
...
This diff is collapsed.
Click to expand it.
Cargo.toml
+
1
−
1
View file @
fe6e6738
...
...
@@ -6,7 +6,7 @@ name = "bytes"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.5.x" git tag.
version
=
"0.5.
3
"
version
=
"0.5.
4
"
license
=
"MIT"
authors
=
[
"Carl Lerche <me@carllerche.com>"
,
...
...
This diff is collapsed.
Click to expand it.
src/lib.rs
+
1
−
1
View file @
fe6e6738
#![deny(warnings,
missing_docs,
missing_debug_implementations,
rust_2018_idioms)]
#![doc(html_root_url
=
"https://docs.rs/bytes/0.5.
3
"
)]
#![doc(html_root_url
=
"https://docs.rs/bytes/0.5.
4
"
)]
#![no_std]
//! Provides abstractions for working with bytes.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment