File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ script: |
24
24
cargo test --verbose &&
25
25
cargo test --verbose --features serde &&
26
26
([ $TRAVIS_RUST_VERSION != nightly ] || cargo check --verbose --no-default-features) &&
27
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --features union) &&
27
+ ([ $TRAVIS_RUST_VERSION != beta ] || cargo test --verbose --features union) &&
28
28
([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --all-features) &&
29
29
([ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose bench) &&
30
30
([ $TRAVIS_RUST_VERSION != nightly ] || bash ./scripts/run_miri.sh) &&
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " smallvec"
3
- version = " 1.5.1 "
3
+ version = " 1.6.0 "
4
4
edition = " 2018"
5
5
authors = [" The Servo Project Developers" ]
6
6
license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change 28
28
//!
29
29
//! ### `union`
30
30
//!
31
- //! **This feature requires Rust 1.50 .**
31
+ //! **This feature requires Rust 1.49 .**
32
32
//!
33
33
//! When the `union` feature is enabled `smallvec` will track its state (inline or spilled)
34
34
//! without the use of an enum tag, reducing the size of the `smallvec` by one machine word.
37
37
//! machine words.
38
38
//!
39
39
//! To use this feature add `features = ["union"]` in the `smallvec` section of Cargo.toml.
40
- //! Note that this feature requires Rust 1.50 .
40
+ //! Note that this feature requires Rust 1.49 .
41
41
//!
42
42
//! Tracking issue: [rust-lang/rust#55149](https://github.com/rust-lang/rust/issues/55149)
43
43
//!
You can’t perform that action at this time.
0 commit comments