From 1cc9e2bcde80e958e57f02ae80625b2ec3031fbe Mon Sep 17 00:00:00 2001 From: Nicolas Stalder Date: Fri, 19 Feb 2021 14:50:09 +0100 Subject: [PATCH] Prepare for initial release --- Cargo.toml | 1 + derive/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 74d902a..93a316a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Nicolas Stalder ", "RustCrypto Developers"] license = "Apache-2.0 OR MIT" edition = "2018" description = "Encoding and decoding of SIMPLE-TLV as described in ISO 7816-4, without allocations." +repository = "https://github.com/nickray/simple-tlv" categories = ["cryptography", "data-structures", "encoding", "no-std"] keywords = ["crypto", "no_std", "serialization"] readme = "README.md" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 0e6093d..28cb6b1 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Nicolas Stalder ", "RustCrypto Developers"] license = "Apache-2.0 OR MIT" edition = "2018" description = "Procedural macros to derive `Decodable` and `Encodable` from `simple-tlv`." +repository = "https://github.com/nickray/simple-tlv/tree/main/derive" categories = ["cryptography", "data-structures", "encoding", "no-std"] keywords = ["crypto"]