Browse Source

Update the MSRV

pull/99/head
Jan Christian Grünhage 2 years ago
parent
commit
b74765187c
No known key found for this signature in database GPG Key ID: EEC1170CE56FA2ED
  1. 2
      .github/workflows/ci.yml
  2. 2
      CHANGELOG.md
  3. 2
      README.md
  4. 1
      acme_common/Cargo.toml
  5. 1
      acmed/Cargo.toml
  6. 1
      tacd/Cargo.toml

2
.github/workflows/ci.yml

@ -8,11 +8,11 @@ jobs:
strategy:
matrix:
rust:
- 1.64.0
- 1.65.0
- 1.66.1
- 1.67.1
- 1.68.2
- 1.69.0
- stable
- beta
- nightly

2
CHANGELOG.md

@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- The minimum supported Rust version (MSRV) is now 1.64.
- The minimum supported Rust version (MSRV) is now 1.65.
- Manual (and badly designed) threads have been replaced by async.
- Randomized early delay, for spacing out renewals when dealing with a lot of certificates.
- Replaced the template engine TinyTemplate with MiniJinja.

2
README.md

@ -77,7 +77,7 @@ man =(curl -sSf "https://raw.githubusercontent.com/breard-r/acmed/main/man/en/ta
## Build from source
In order to compile ACMEd, you will need the [Rust](https://www.rust-lang.org/) compiler and its package manager, Cargo. The minimum supported Rust version(MSRV) is 1.64, although it is recommended to use the latest stable one.
In order to compile ACMEd, you will need the [Rust](https://www.rust-lang.org/) compiler and its package manager, Cargo. The minimum supported Rust version(MSRV) is 1.65, although it is recommended to use the latest stable one.
ACMEd depends OpenSSL 1.1.0 or higher.

1
acme_common/Cargo.toml

@ -8,6 +8,7 @@ repository = "https://github.com/breard-r/libreauth"
license = "MIT OR Apache-2.0"
include = ["src/**/*", "Cargo.toml", "Licence_*.txt"]
publish = false
rust-version = "1.65.0"
[lib]
name = "acme_common"

1
acmed/Cargo.toml

@ -12,6 +12,7 @@ categories = ["cryptography"]
build = "build.rs"
include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"]
publish = false
rust-version = "1.65.0"
[features]
default = ["openssl_dyn"]

1
tacd/Cargo.toml

@ -11,6 +11,7 @@ keywords = ["acme", "tls", "alpn", "X.509"]
categories = ["cryptography"]
include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"]
publish = false
rust-version = "1.65.0"
[features]
default = ["openssl_dyn"]

Loading…
Cancel
Save