From 0dc50fbfd45cbb84418a83dd4522f02b0b538f19 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 31 Dec 2020 19:43:20 +0100 Subject: [PATCH] Upgrade openssl and systest crates to edition 2018 --- openssl/Cargo.toml | 1 + systest/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 5c741d2da..b3e0e3347 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -8,6 +8,7 @@ repository = "https://github.com/sfackler/rust-openssl" readme = "README.md" keywords = ["crypto", "tls", "ssl", "dtls"] categories = ["cryptography", "api-bindings"] +edition = "2018" # these are deprecated and don't do anything anymore [features] diff --git a/systest/Cargo.toml b/systest/Cargo.toml index bea35574e..9f74f9732 100644 --- a/systest/Cargo.toml +++ b/systest/Cargo.toml @@ -2,6 +2,7 @@ name = "systest" version = "0.1.0" authors = ["Alex Crichton "] +edition = "2018" [dependencies] libc = "0.2" -- GitLab