From 5506fbe71b61cc849aed4d63e1d184e72f6e8a9f Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Sun, 1 Nov 2020 09:59:16 +0100 Subject: [PATCH] Add Rust 1.42 compatibility --- .travis.yml | 1 + CHANGELOG.md | 3 --- README.md | 2 +- acmed/Cargo.toml | 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3d4d433..31b7d82 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: rust rust: + - "1.42.0" - "1.43.1" - "1.44.1" - "1.45.2" diff --git a/CHANGELOG.md b/CHANGELOG.md index a2b6a23..67f0675 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,9 +15,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Changed -- The minimal required Rust version is 1.43. - ## [0.14.0] - 2020-10-27 diff --git a/README.md b/README.md index 0e9cc55..89d6bc0 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ man =(curl -sSf "https://raw.githubusercontent.com/breard-r/acmed/master/man/en/ ## 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 minimal required Rust version is 1.43, 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 minimal required Rust version is 1.42, although it is recommended to use the latest stable one. ACMEd depends OpenSSL 1.1.0 or higher. diff --git a/acmed/Cargo.toml b/acmed/Cargo.toml index 50d1219..af5593d 100644 --- a/acmed/Cargo.toml +++ b/acmed/Cargo.toml @@ -27,7 +27,7 @@ clap = "2.32" glob = "0.3" handlebars = "3.0" log = "0.4" -nom = "6.0" +nom = { version = "6.0", default-features = false, features = [] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" toml = "0.5"