diff --git a/Cargo.toml b/Cargo.toml index 0976cdf..69b45b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "0.19.0" +version = "0.19.1" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" @@ -48,7 +48,7 @@ generic-array = "0.9" clear_on_drop = "=0.2.3" subtle = { version = "0.7", features = ["generic-impls"], default-features = false } serde = { version = "1.0", optional = true } -packed_simd = { version = "0.1.0", features = ["into_bits"], optional = true } +packed_simd = { version = "0.3.0", features = ["into_bits"], optional = true } [build-dependencies] rand = { version = "0.5", default-features = false } @@ -58,7 +58,7 @@ generic-array = "0.9" clear_on_drop = "=0.2.3" subtle = { version = "0.7", features = ["generic-impls"], default-features = false } serde = { version = "1.0", optional = true } -packed_simd = { version = "0.1.0", features = ["into_bits"], optional = true } +packed_simd = { version = "0.3.0", features = ["into_bits"], optional = true } [features] nightly = ["subtle/nightly", "clear_on_drop/nightly"] diff --git a/README.md b/README.md index f241f81..e0ff3c3 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ make doc-internal To import `curve25519-dalek`, add the following to the dependencies section of your project's `Cargo.toml`: ```toml -curve25519-dalek = "^0.18" +curve25519-dalek = "0.19" ``` Then import the crate as: ```rust,no_run