From b06df0376ca48a9cac2c70fcadae176f0a3e1eb6 Mon Sep 17 00:00:00 2001 From: bitmold Date: Tue, 1 Feb 2022 02:15:31 -0500 Subject: [PATCH 1/2] Update README.md master -> main --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2600cce..acad0f9 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ that primitive. Please see [CONTRIBUTING.md][contributing]. Patches and pull requests should be make against the `develop` -branch, **not** `master`. +branch, **not** `main`. # About From f7381ac64cd8439c7131de99ac5e1f1867dd9c93 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Wed, 16 Feb 2022 20:44:04 +0000 Subject: [PATCH 2/2] Pin zeroize dependency to >=1, <1.4 to relax bounds for downstreams. As suggested by @tarcieri in #362. See also commit b6a7406. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 86ff6c4..f32957c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ serde = { version = "1.0", default-features = false, optional = true, features = # The original packed_simd package was orphaned, see # https://github.com/rust-lang/packed_simd/issues/303#issuecomment-701361161 packed_simd = { version = "0.3.4", package = "packed_simd_2", features = ["into_bits"], optional = true } -zeroize = { version = "=1.3.0", default-features = false } +zeroize = { version = ">=1, <1.4", default-features = false } fiat-crypto = { version = "0.1.6", optional = true} [features]