-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #53 - mbrubeck:no_std, r=emilio
Document and test no_std support This builds on the new "std" Cargo feature added in #49. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-smallvec/53) <!-- Reviewable:end -->
- Loading branch information
Showing
4 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
[package] | ||
name = "smallvec" | ||
version = "0.4.0" | ||
version = "0.4.1" | ||
authors = ["Simon Sapin <[email protected]>"] | ||
license = "MPL-2.0" | ||
repository = "https://github.com/servo/rust-smallvec" | ||
description = "'Small vector' optimization: store up to a small number of items on the stack" | ||
keywords = ["small", "vec", "vector", "stack"] | ||
keywords = ["small", "vec", "vector", "stack", "no_std"] | ||
readme = "README.md" | ||
documentation = "http://doc.servo.org/smallvec/" | ||
|
||
[features] | ||
heapsizeof = ["heapsize", "std"] | ||
collections = [] | ||
std = [] | ||
default = ["std"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
rust-smallvec | ||
============= | ||
|
||
[Documentation](http://doc.servo.org/smallvec/) | ||
[Documentation](http://docs.rs/smallvec/) | ||
|
||
"Small vector" optimization for Rust: store up to a small number of items on the stack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters