Skip to content
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.

Commit

Permalink
try building on 1.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Nov 29, 2018
1 parent a3e58e2 commit f695b3e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 19,9 @@ env:
# ensure nickel works without hyper
- ARGS ='--no-default-features --features "nickel"'
- ARGS ='--features "use-arc-str"'
matrix:
include:
- rust: 1.22.1
script:
- |
if [ ${TRAVIS_RUST_VERSION} = "nightly" ]; then
Expand All @@ -27,6 30,12 @@ script:
cargo test --verbose $ARGS --features "nightly,rocket,rocket_codegen" -- --test-threads=1;
cargo doc --verbose $ARGS --features "nightly";
fi
- |
if [ ${TRAVIS_RUST_VERSION} = "1.22.1" ]; then
# we can't test because `env_logger` uses `lazy_static 1.2.0` which needs Rust 1.26
cargo build --no-default-features --features "mock,client,server";
exit 0;
fi
- cargo build --verbose $ARGS;
- cargo test --verbose $ARGS -- --test-threads=1;
- cargo doc --verbose $ARGS;
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,10 @@ Client- and server-side abstractions for HTTP file uploads (POST requests with
Supports several different (**sync**hronous API) HTTP crates.
**Async**hronous (i.e. `futures`-based) API support will be provided by [multipart-async].

Minimum supported Rust version: 1.26.1
Minimum supported Rust version: 1.22.1*
* only `mock`, `client` and `server` features, only guaranteed to compile

Fully tested Rust version: 1.26.1

### [Documentation](http://docs.rs/multipart/)

Expand Down

0 comments on commit f695b3e

Please sign in to comment.