From 84112304a8cd02ef0b57b6df261520d6fc7f6bb4 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sat, 14 Aug 2021 20:30:35 +0600 Subject: [PATCH] downgrade nanorand --- .github/workflows/linux.yml | 10 +++++----- ntex/Cargo.toml | 2 +- ntex/src/http/client/ws.rs | 2 +- ntex/src/ws/frame.rs | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0dfad4ee..e3c1db29 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -8,7 +8,7 @@ jobs: fail-fast: false matrix: version: - - 1.48.0 # MSRV + - 1.46.0 # MSRV - stable - nightly @@ -43,7 +43,7 @@ jobs: key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo tarpaulin - if: matrix.version == '1.48.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.46.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') uses: actions/cache@v1 with: path: ~/.cargo/bin @@ -57,19 +57,19 @@ jobs: args: --all --all-features --no-fail-fast -- --nocapture - name: Install tarpaulin - if: matrix.version == '1.48.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.46.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') continue-on-error: true run: | cargo install cargo-tarpaulin - name: Generate coverage report - if: matrix.version == '1.48.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.46.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') continue-on-error: true run: | cargo tarpaulin --out Xml --all --all-features - name: Upload to Codecov - if: matrix.version == '1.48.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.46.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') continue-on-error: true uses: codecov/codecov-action@v1 with: diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index be868875..c4fb9a10 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -60,7 +60,7 @@ futures-sink = { version = "0.3.16", default-features = false, features = ["allo log = "0.4" mio = "0.7.11" num_cpus = "1.13" -nanorand = { version = "0.6", default-features = false, features = ["std", "wyrand"] } +nanorand = { version = "0.5", default-features = false, features = ["std", "wyrand"] } pin-project-lite = "0.2" regex = { version = "1.5.4", default-features = false, features = ["std"] } sha-1 = "0.9" diff --git a/ntex/src/http/client/ws.rs b/ntex/src/http/client/ws.rs index 2e571c1b..a33c57da 100644 --- a/ntex/src/http/client/ws.rs +++ b/ntex/src/http/client/ws.rs @@ -3,7 +3,7 @@ use std::{convert::TryFrom, fmt, net::SocketAddr, rc::Rc, str}; #[cfg(feature = "cookie")] use coo_kie::{Cookie, CookieJar}; -use nanorand::{Rng, WyRand}; +use nanorand::{WyRand, RNG}; use crate::codec::{AsyncRead, AsyncWrite, Framed}; use crate::framed::{DispatchItem, Dispatcher, State}; diff --git a/ntex/src/ws/frame.rs b/ntex/src/ws/frame.rs index ad5e395a..34b4cf50 100644 --- a/ntex/src/ws/frame.rs +++ b/ntex/src/ws/frame.rs @@ -1,7 +1,7 @@ use std::convert::TryFrom; use log::debug; -use nanorand::{Rng, WyRand}; +use nanorand::{WyRand, RNG}; use super::proto::{CloseCode, CloseReason, OpCode}; use super::{mask::apply_mask, ProtocolError};