Skip to content

Commit 52cc113

Browse files
authored
Merge pull request #6 from Alexhuszagh/deps
Update dependencies
2 parents 04a9d4d + d36f96b commit 52cc113

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
rust: [1.56.0, stable, nightly]
14+
rust: [1.63.0, stable, nightly]
1515
steps:
1616
- uses: actions/checkout@v2
1717
with:

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ default = ["std"]
2020
std = []
2121

2222
[dev-dependencies]
23-
lexical-core = "0.7"
24-
hexf-parse = "0.1"
23+
lexical-core = "1.0.2"
24+
hexf-parse = "0.2.1"
2525
ryu = "1.0"
26-
fastrand = "1.4"
27-
num-bigint = "0.3"
26+
fastrand = "2.1.1"
27+
num-bigint = "0.4.6"
2828

2929
[workspace]
3030
members = [".", "extras/data-tests", "extras/simple-bench"]

extras/simple-bench/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ publish = false
1111
fast-float2 = { path = "../.." }
1212
structopt = "0.3"
1313
anyhow = "1.0"
14-
lexical = "5.2"
15-
lexical-core = "0.7"
16-
fastrand = "1.4"
14+
lexical = "7.0.2"
15+
lexical-core = "1.0.2"
16+
fastrand = "2.1.1"
1717
fast-float = "0.2"

tests/test_random.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
fn test_f64_random_from_u64() {
44
const N_ITER: u64 = 1 << 32;
55

6-
let rng = fastrand::Rng::with_seed(0);
6+
let mut rng = fastrand::Rng::with_seed(0);
77
let mut buf = ryu::Buffer::new();
88
for _ in 0..N_ITER {
99
let i: u64 = rng.u64(0..0xFFFF_FFFF_FFFF_FFFF);

0 commit comments

Comments
 (0)