summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Matuszewski <igor@sequoia-pgp.org>2020-10-26 21:09:21 +0100
committerIgor Matuszewski <igor@sequoia-pgp.org>2020-10-26 21:30:02 +0100
commiteca27cf750d73b729673afeeae64ec204690c0f2 (patch)
treea8604192ec7d9a236502fc4225757b457686f09f
parentf3563ab27f25ac82b341652da1087ff960afc307 (diff)
Don't specify openpgp crate version number in README.md examples
-rw-r--r--README.md6
1 files 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"]