From 5c725920691591caf408500d1aacbae0d84ee202 Mon Sep 17 00:00:00 2001 From: Jake McGinty Date: Tue, 11 Jan 2022 01:54:43 -0600 Subject: [PATCH] meta: rust edition 2018 -> 2021 --- client/Cargo.toml | 2 +- hostsfile/Cargo.toml | 2 +- publicip/Cargo.toml | 2 +- server/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- wireguard-control/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index 3041c11..5330cf5 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Jake McGinty "] description = "A client to manage innernet network interfaces." -edition = "2018" +edition = "2021" homepage = "https://github.com/tonarino/innernet" license = "MIT" name = "client" diff --git a/hostsfile/Cargo.toml b/hostsfile/Cargo.toml index a059644..d95b4cc 100644 --- a/hostsfile/Cargo.toml +++ b/hostsfile/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Ryo Kawaguchi "] description = "A simplistic /etc/hosts file editor." -edition = "2018" +edition = "2021" license = "UNLICENSED" name = "hostsfile" publish = false diff --git a/publicip/Cargo.toml b/publicip/Cargo.toml index 45f88a7..0caee0a 100644 --- a/publicip/Cargo.toml +++ b/publicip/Cargo.toml @@ -1,6 +1,6 @@ [package] authors = ["Jake McGinty "] -edition = "2018" +edition = "2021" name = "publicip" version = "0.1.0" diff --git a/server/Cargo.toml b/server/Cargo.toml index 21b7a58..977032d 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Jake McGinty "] description = "A server to coordinate innernet networks." -edition = "2018" +edition = "2021" license = "MIT" name = "server" publish = false diff --git a/shared/Cargo.toml b/shared/Cargo.toml index a551c2c..74903ff 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] authors = ["Jake McGinty "] -edition = "2018" +edition = "2021" license = "MIT" name = "shared" publish = false diff --git a/wireguard-control/Cargo.toml b/wireguard-control/Cargo.toml index 92d0b40..354df4e 100644 --- a/wireguard-control/Cargo.toml +++ b/wireguard-control/Cargo.toml @@ -2,7 +2,7 @@ authors = ["K900 ", "Jake McGinty "] categories = ["os::unix-apis"] description = "High level bindings to the WireGuard embeddable C library" -edition = "2018" +edition = "2021" license = "LGPL-2.1-or-later" name = "wireguard-control" readme = "README.md"