mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
downgrade nanorand
This commit is contained in:
parent
832ea625d1
commit
84112304a8
4 changed files with 8 additions and 8 deletions
10
.github/workflows/linux.yml
vendored
10
.github/workflows/linux.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
version:
|
version:
|
||||||
- 1.48.0 # MSRV
|
- 1.46.0 # MSRV
|
||||||
- stable
|
- stable
|
||||||
- nightly
|
- nightly
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ jobs:
|
||||||
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
- name: Cache cargo tarpaulin
|
- 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
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
path: ~/.cargo/bin
|
path: ~/.cargo/bin
|
||||||
|
@ -57,19 +57,19 @@ jobs:
|
||||||
args: --all --all-features --no-fail-fast -- --nocapture
|
args: --all --all-features --no-fail-fast -- --nocapture
|
||||||
|
|
||||||
- name: Install tarpaulin
|
- 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
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
cargo install cargo-tarpaulin
|
cargo install cargo-tarpaulin
|
||||||
|
|
||||||
- name: Generate coverage report
|
- 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
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
cargo tarpaulin --out Xml --all --all-features
|
cargo tarpaulin --out Xml --all --all-features
|
||||||
|
|
||||||
- name: Upload to Codecov
|
- 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
|
continue-on-error: true
|
||||||
uses: codecov/codecov-action@v1
|
uses: codecov/codecov-action@v1
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -60,7 +60,7 @@ futures-sink = { version = "0.3.16", default-features = false, features = ["allo
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
mio = "0.7.11"
|
mio = "0.7.11"
|
||||||
num_cpus = "1.13"
|
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"
|
pin-project-lite = "0.2"
|
||||||
regex = { version = "1.5.4", default-features = false, features = ["std"] }
|
regex = { version = "1.5.4", default-features = false, features = ["std"] }
|
||||||
sha-1 = "0.9"
|
sha-1 = "0.9"
|
||||||
|
|
|
@ -3,7 +3,7 @@ use std::{convert::TryFrom, fmt, net::SocketAddr, rc::Rc, str};
|
||||||
|
|
||||||
#[cfg(feature = "cookie")]
|
#[cfg(feature = "cookie")]
|
||||||
use coo_kie::{Cookie, CookieJar};
|
use coo_kie::{Cookie, CookieJar};
|
||||||
use nanorand::{Rng, WyRand};
|
use nanorand::{WyRand, RNG};
|
||||||
|
|
||||||
use crate::codec::{AsyncRead, AsyncWrite, Framed};
|
use crate::codec::{AsyncRead, AsyncWrite, Framed};
|
||||||
use crate::framed::{DispatchItem, Dispatcher, State};
|
use crate::framed::{DispatchItem, Dispatcher, State};
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use std::convert::TryFrom;
|
use std::convert::TryFrom;
|
||||||
|
|
||||||
use log::debug;
|
use log::debug;
|
||||||
use nanorand::{Rng, WyRand};
|
use nanorand::{WyRand, RNG};
|
||||||
|
|
||||||
use super::proto::{CloseCode, CloseReason, OpCode};
|
use super::proto::{CloseCode, CloseReason, OpCode};
|
||||||
use super::{mask::apply_mask, ProtocolError};
|
use super::{mask::apply_mask, ProtocolError};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue