Skip to content

Commit 2eaba4e

Browse files
repiest31
authored andcommitted
Upgrade smallvec 0.6 -> 1.1 (#74)
* Upgrade smallvec 0.6 -> 1.1 Good to use stable & latest release of smallvec * Rust minimum version 1.20 -> 1.36 * Update Cargo.lock in dev/cmp
1 parent 9ce218d commit 2eaba4e

File tree

5 files changed

+28
-42
lines changed

5 files changed

+28
-42
lines changed

.github/workflows/lewton.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,30 @@ jobs:
88
strategy:
99
matrix:
1010
os: [macOS-latest, ubuntu-latest, windows-latest]
11-
toolchain: [stable, 1.20.0]
11+
toolchain: [stable, 1.36.0]
1212

1313
runs-on: ${{ matrix.os }}
1414

1515
steps:
1616
- uses: actions/checkout@master
1717
- name: Install Rust
18-
if: matrix.os != 'macOS-latest' || matrix.toolchain != '1.20.0'
18+
if: matrix.os != 'macOS-latest' || matrix.toolchain != '1.36.0'
1919
uses: actions-rs/toolchain@v1
2020
with:
2121
toolchain: ${{ matrix.toolchain }}
2222
override: true
2323
- name: Run no-default-features builds
24-
if: matrix.os != 'macOS-latest' || matrix.toolchain != '1.20.0'
24+
if: matrix.os != 'macOS-latest' || matrix.toolchain != '1.36.0'
2525
run: |
2626
cargo test --verbose --no-default-features
2727
cargo doc --verbose --no-default-features
2828
- name: Run all-features builds
29-
if: matrix.os != 'macOS-latest' || matrix.toolchain != '1.20.0'
29+
if: matrix.os != 'macOS-latest' || matrix.toolchain != '1.36.0'
3030
run: |
3131
cargo test --verbose --all-features
3232
cargo doc --verbose --all-features
3333
- name: Run cmp tests
34-
if: matrix.os != 'macOS-latest' || matrix.toolchain != '1.20.0'
34+
if: matrix.os != 'macOS-latest' || matrix.toolchain != '1.36.0'
3535
run: |
3636
cd dev/cmp
3737
cargo test --verbose --release

Cargo.lock

Lines changed: 16 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ required-features = ["ogg"]
2424

2525
[dependencies]
2626
byteorder = "1.0"
27-
smallvec = "0.6"
27+
smallvec = "1.1"
2828
ogg = { version = "0.7", optional = true }
2929
tokio-io = { version = "0.1", optional = true }
3030
futures = { version = "0.1", optional = true }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and a high level API for ogg/vorbis streams in the `inside_ogg` module.
2020
Some parts were created with help from the public domain
2121
[stb_vorbis](http://nothings.org/stb_vorbis/) decoder implementation.
2222

23-
The minimum required Rust version is 1.20.
23+
The minimum required Rust version is 1.36.
2424

2525
## Use of unsafe
2626

dev/cmp/Cargo.lock

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)