From eca27cf750d73b729673afeeae64ec204690c0f2 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Mon, 26 Oct 2020 21:09:21 +0100 Subject: Don't specify openpgp crate version number in README.md examples --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 783a3c4c..a3c595b9 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Using Sequoia If you want to use Sequoia from Rust, you can simply register the dependency in your `Cargo.toml` file as with any other project. ```toml -sequoia-openpgp = version = "0.20" +sequoia-openpgp = version = "*" ``` Note that we depend on a number of C libraries, which must be present along with their development packages. See **Requirements** section below. @@ -111,7 +111,7 @@ To use the Windows CNG backend, use: ```toml # Cargo.toml [dependencies] -sequoia-openpgp = { version = "0.20", default-features = false, features = ["crypto-cng"] } +sequoia-openpgp = { version = "*", default-features = false, features = ["crypto-cng"] } ``` ```bash @@ -130,7 +130,7 @@ Like so: ```toml # Cargo.toml [dependencies] -sequoia-openpgp = { version = "0.20", default-features = false } +sequoia-openpgp = { version = "*", default-features = false } [features] # Pick a Sequoia backend enabled by default default = ["seqouia-openpgp/crypto-nettle"] -- cgit v1.2.3