From 96348f5de26bfafca1f5857339582e03af16e3f1 Mon Sep 17 00:00:00 2001 From: Michele Esposito Date: Wed, 29 Nov 2023 20:56:41 +0100 Subject: [PATCH] chore: fix cargo toml --- Cargo.lock | 4 ++-- Cargo.toml | 14 +++++++++++++- enclave/Cargo.toml | 11 +---------- 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eba0262..3756bd4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -282,7 +282,7 @@ dependencies = [ [[package]] name = "secured" -version = "0.0.1" +version = "0.1.0" dependencies = [ "clap", "secured-enclave", @@ -291,7 +291,7 @@ dependencies = [ [[package]] name = "secured-enclave" -version = "0.0.1" +version = "0.1.0" dependencies = [ "chacha20poly1305", "hmac", diff --git a/Cargo.toml b/Cargo.toml index 397093c..d763667 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,21 @@ [package] name = "secured" -version = "0.0.1" +version = "0.1.0" edition = "2021" authors = ["mikesposito"] license = "MIT" +description = "A lightweight, easy-to-use Rust package for file encryption and decryption, suitable for both CLI and library integration in Rust applications." +repository = "https://github.com/mikesposito/secured/" +keywords = [ + "crypto", + "encryptor", + "vault", + "encrypt", + "decrypt", + "cipher", + "password", + "passworder", +] [workspace] members = ["enclave"] diff --git a/enclave/Cargo.toml b/enclave/Cargo.toml index 2d5fa3d..aa85c35 100644 --- a/enclave/Cargo.toml +++ b/enclave/Cargo.toml @@ -1,17 +1,8 @@ [package] name = "secured-enclave" -version = "0.0.1" +version = "0.1.0" authors = ["mikesposito"] -readme="README.md" edition = "2021" -repository = "https://github.com/mikesposito/walleth/crates/vault/safe" -keywords = [ - "ethereum", - "wallet", - "library", - "crypto", - "signing", -] [dependencies.chacha20poly1305] version = "~0.9.0"