Skip to content

Commit ec91af5

Browse files
committed
Fix min dependency versions
1 parent bee721b commit ec91af5

File tree

3 files changed

+30
-17
lines changed

3 files changed

+30
-17
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

66
## [Unreleased]
7+
### Changed
8+
- Fixed some incorrect minimum supported versions of dependencies that weren't caught due to
9+
improper `Cargo.lock`:
10+
* `num-traits` 0.2.14 -> 0.2.16
11+
* `zerocopy` 0.8.0 -> 0.8.23
12+
* `arbitrary` 1.3.2 -> 1.4.1
13+
714
### Added
815
- `f16` and `bf16` now implement `Immutable` and `KnownLayout` for `zerocopy` crate. By [@usamoi].
916

@@ -17,7 +24,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1724
* `rkyv` 0.7 -> 0.8
1825
* (dev) `criterion` 0.4 -> 0.5
1926
- Minimum supported Rust version has been changed to 1.81 due to above dependency updates.
20-
- Minor restructing of included license file locations to be more consistent with crates ecosystem.
27+
- Minor restructuring of included license file locations to be more consistent with crates ecosystem.
2128

2229
### Added
2330
- Added support for `arbitrary` crate. Fixes [#110]. By [@FL33TW00D].

Cargo.lock

Lines changed: 18 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ bytemuck = { version = "1.4.1", default-features = false, features = [
2828
serde = { version = "1.0", default-features = false, features = [
2929
"derive",
3030
], optional = true }
31-
num-traits = { version = "0.2.14", default-features = false, features = [
31+
num-traits = { version = "0.2.16", default-features = false, features = [
3232
"libm",
3333
], optional = true }
34-
zerocopy = { version = "0.8", default-features = false, features = [
34+
zerocopy = { version = "0.8.23", default-features = false, features = [
3535
"derive",
3636
], optional = true }
3737
rand = { version = "0.9.0", default-features = false, features = [
3838
"thread_rng",
3939
], optional = true }
4040
rand_distr = { version = "0.5.0", default-features = false, optional = true }
41-
rkyv = { version = "0.8", optional = true }
42-
arbitrary = { version = "1.3.2", features = ["derive"], optional = true }
41+
rkyv = { version = "0.8.0", optional = true }
42+
arbitrary = { version = "1.4.1", features = ["derive"], optional = true }
4343

4444
[target.'cfg(target_arch = "spirv")'.dependencies]
4545
crunchy = "0.2.2"

0 commit comments

Comments
 (0)