Skip to content

Commit e7db166

Browse files
committed
0.16.8: Depend on spin-rs ^0.5.2.
spin-rs 0.5.2 fixes a bug in `rw_lock`. That bug doesn't seem to affect *ring* based on the bug report and the fix PR, since *ring* uses only `spin::Once` and the fix for the bug doesn't touch `spin::Once` at all. (I manually verified `spin::Once` doesn't depend on `spin::rw_lock` at all.) Still, upgrade so that people don't get scared and to avoid various inconveniences.
1 parent 88d5aa7 commit e7db166

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license-file = "LICENSE"
1010
name = "ring"
1111
readme = "doc/link-to-readme.md"
1212
repository = "https://github.com/briansmith/ring"
13-
version = "0.16.7"
13+
version = "0.16.8"
1414

1515
# Prevent multiple versions of *ring* from being linked into the same program.
1616
links = "ring-asm"
@@ -304,7 +304,7 @@ name = "ring"
304304
untrusted = { version = "0.7.0" }
305305

306306
[target.'cfg(all(any(target_arch = "aarch64", target_arch = "arm", target_arch = "x86", target_arch = "x86_64"), not(target_os = "ios")))'.dependencies]
307-
spin = { version = "0.5.0", default-features = false }
307+
spin = { version = "0.5.2", default-features = false }
308308

309309

310310
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]

0 commit comments

Comments
 (0)