Skip to content

Commit

Permalink
Merge pull request #6 from Alexhuszagh/deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
Alexhuszagh authored Oct 31, 2024
2 parents 04a9d4d + d36f96b commit 52cc113
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [1.56.0, stable, nightly]
rust: [1.63.0, stable, nightly]
steps:
- uses: actions/checkout@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ default = ["std"]
std = []

[dev-dependencies]
lexical-core = "0.7"
hexf-parse = "0.1"
lexical-core = "1.0.2"
hexf-parse = "0.2.1"
ryu = "1.0"
fastrand = "1.4"
num-bigint = "0.3"
fastrand = "2.1.1"
num-bigint = "0.4.6"

[workspace]
members = [".", "extras/data-tests", "extras/simple-bench"]
Expand Down
6 changes: 3 additions & 3 deletions extras/simple-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ publish = false
fast-float2 = { path = "../.." }
structopt = "0.3"
anyhow = "1.0"
lexical = "5.2"
lexical-core = "0.7"
fastrand = "1.4"
lexical = "7.0.2"
lexical-core = "1.0.2"
fastrand = "2.1.1"
fast-float = "0.2"
2 changes: 1 addition & 1 deletion tests/test_random.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
fn test_f64_random_from_u64() {
const N_ITER: u64 = 1 << 32;

let rng = fastrand::Rng::with_seed(0);
let mut rng = fastrand::Rng::with_seed(0);
let mut buf = ryu::Buffer::new();
for _ in 0..N_ITER {
let i: u64 = rng.u64(0..0xFFFF_FFFF_FFFF_FFFF);
Expand Down

0 comments on commit 52cc113

Please sign in to comment.