Add MSRV exception for ruma-client
This commit is contained in:
parent
91dd6383c5
commit
2b91b07c7b
@ -58,27 +58,10 @@ tasks:
|
|||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Test non-default configurations of ruma-client
|
|
||||||
pushd ruma-client
|
|
||||||
|
|
||||||
cargo check --no-default-features --quiet
|
|
||||||
client_1_exit=$?
|
|
||||||
|
|
||||||
cargo check --no-default-features --features http1,http2,tls-rustls-native-roots --quiet
|
|
||||||
client_2_exit=$?
|
|
||||||
|
|
||||||
cargo check --no-default-features --features http1,http2,tls-rustls-webpki-roots --quiet
|
|
||||||
client_3_exit=$?
|
|
||||||
|
|
||||||
popd
|
|
||||||
|
|
||||||
exit $(( \
|
exit $(( \
|
||||||
$ruma_build_exit \
|
$ruma_build_exit \
|
||||||
|| $client_build_exit \
|
|| $client_build_exit \
|
||||||
|| $id_build_1_exit \
|
|| $id_build_1_exit \
|
||||||
|| $id_build_2_exit \
|
|| $id_build_2_exit \
|
||||||
|| $client_api_build_exit \
|
|| $client_api_build_exit \
|
||||||
|| $client_1_exit \
|
|
||||||
|| $client_2_exit \
|
|
||||||
|| $client_3_exit \
|
|
||||||
))
|
))
|
||||||
|
@ -26,9 +26,12 @@ Ruma currently requires Rust 1.43.0. In general, we will never require beta or
|
|||||||
nightly for crates.io releases of our crates, and we will try to avoid releasing
|
nightly for crates.io releases of our crates, and we will try to avoid releasing
|
||||||
crates that depend on features that were only just stabilized.
|
crates that depend on features that were only just stabilized.
|
||||||
|
|
||||||
The exception to this is ruma-signatures (and hence ruma with the federation-api
|
There are two exceptions to this:
|
||||||
feature) since it depends on [ring][], which is only guaranteed to work on the
|
|
||||||
latest stable.
|
* ruma-signatures (and hence ruma with the federation-api feature) since it
|
||||||
|
depends on [ring][], which is only guaranteed to work on the latest stable.
|
||||||
|
* ruma-client depends on some I/O libraries (and also on ring, conditionally),
|
||||||
|
so it is also only guaranteed to work on the latest stable.
|
||||||
|
|
||||||
[ring]: https://github.com/briansmith/ring/
|
[ring]: https://github.com/briansmith/ring/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user