From 47c2684f08af17ae4ef4b7d7deca7a673b997ce6 Mon Sep 17 00:00:00 2001 From: Matt Johnston <matt@ucc.asn.au> Date: Fri, 23 Sep 2022 00:18:22 +0800 Subject: [PATCH] Add license fields and description --- Cargo.toml | 2 +- async/Cargo.toml | 2 ++ sshwire-derive/Cargo.toml | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6d4f0a6..fad618b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" description = "A SSH library suitable for embedded and larger programs" repository = "https://github.com/mkj/sunset" categories = ["network-programming", "no-std"] -license-file = "LICENSE" +license = "MPL-2.0" keywords = ["ssh"] [workspace] diff --git a/async/Cargo.toml b/async/Cargo.toml index 6f27e9d..6914bd4 100644 --- a/async/Cargo.toml +++ b/async/Cargo.toml @@ -3,6 +3,8 @@ name = "sunset-async" version = "0.1.0" edition = "2021" repository = "https://github.com/mkj/sunset" +license = "MPL-2.0" +description = "Async wrapper for Sunset SSH" [dependencies] sunset = { path = "..", features = ["std"] } diff --git a/sshwire-derive/Cargo.toml b/sshwire-derive/Cargo.toml index e13e080..7047fbf 100644 --- a/sshwire-derive/Cargo.toml +++ b/sshwire-derive/Cargo.toml @@ -3,6 +3,8 @@ name = "sunset-sshwire-derive" version = "0.1.0" edition = "2021" repository = "https://github.com/mkj/sunset" +license = "MPL-2.0" +description = "Derive macros for Sunset SSH packet encoder/decoder" [lib] proc-macro = true -- GitLab