Specify minimal versions in Cargo.toml

This commit is contained in:
David Bürgin 2021-01-18 09:45:19 +01:00
parent b91b118c5b
commit 6922a03642
3 changed files with 13 additions and 7 deletions

View file

@ -1,5 +1,10 @@
# SpamAssassin Milter changelog
## 0.1.5 (unreleased)
* Properly specify minimal dependency versions in `Cargo.toml`.
* Document minimum supported Rust version 1.42.0.
## 0.1.4 (2020-10-18)
* Correct a typo in log messages.

View file

@ -11,9 +11,9 @@ repository = "https://gitlab.com/glts/spamassassin-milter"
exclude = ["/.gitignore", "/.gitlab-ci.yml"]
[dependencies]
chrono = "0.4"
clap = "2"
chrono = "0.4.10"
clap = "2.33"
ipnet = "2.2"
libc = "0.2"
libc = "0.2.66"
milter = "0.2.1"
once_cell = "1.3"

View file

@ -56,11 +56,12 @@ PKG_CONFIG_PATH=. cargo build
```
The integration tests rely on the `miltertest` utility. Make sure `miltertest`
is available and can be executed when running the integration tests.
is available and can be executed when running the integration tests. (Until
recently, `miltertest` had a serious bug that prevents most integration tests in
this package from completing; make sure you use an up-to-date version of
`miltertest`.)
Note that until recently `miltertest` had a serious bug that prevents most
integration tests in this package from completing. Make sure you use an
up-to-date version of `miltertest`.
The minimum supported Rust version is 1.42.0.
[Rust]: https://www.rust-lang.org