From a7f10ba503cd91370760bf7b483c23e7ac399f4b Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Wed, 1 Sep 2021 20:27:39 +0100 Subject: [PATCH] chore: add cargo & readme --- Cargo.toml | 38 +++++++++++++++++++++++++++++++++++ README.md | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 Cargo.toml create mode 100644 README.md diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..63e9d37 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,38 @@ +[package] +name = "tkdr" +version = "0.1.0" +authors = ["JesusPerez "] +edition = "2018" +publish = false + +[profile.dev] +opt-level = 0 + +[profile.release] +opt-level = 3 + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +anyhow = "1.0.38" +blake3 = "0.3.7" +base64 = "0.13.0" +chrono = "0.4" +dotenv = "0.15.0" +enc_file ="0.3.17" +envmnt = "0.8.4" +failure = "0.1.8" +futures = "0.3.12" +futures-cpupool = "0.1.8" +json = "0.12.4" +rand = "0.8.3" +regex = "1.4.3" +reqwest = "0.11.0" +serde = { version = "1.0", features = ["derive"] } +serde_derive = "1.0" +serde_json = "1.0" +serde_yaml = "0.8.16" +tera = "1.6.1" +toml = "0.5" +uuid = { version = "0.8", features = ["serde", "v5"] } +# diff --git a/README.md b/README.md new file mode 100644 index 0000000..c9a1cf1 --- /dev/null +++ b/README.md @@ -0,0 +1,59 @@ +# Tkdr Library + +## Rust Tkdr Library for **applications** + +Part of the following developments: + +- [CloudMandala](https://rlung.librecloud.online/LibreCloud/CloudMandala#cloudmandala) +- [Zteron](https://rlung.librecloud.online/LibreCloud/CloudMandala#cloudmandala) + +Includes applications definitions and functions for following areas: + +- Encrypt Data +- Decrypt Data +- Templating +- UIDs +- Randomkeys + +### Criteria + +In a basic application scenario this group or library collections are included together. + +Updating packages or dependencies shoud be keep in sync among Cargo.toml declarations. + +### How to use + +1 - Clone or download this lib in a path, better outside of target development + +2 - Get current version from Cargo.toml + +3 - For each member of of **Macros Library** one line like the one below should be included in target development Cargo.toml (adjust version & path) and **use** whatever is need. + +```toml +tkdr = { path = "../lib/tkdr" } +``` + +### Structure + +Tkdr for applications + +
+.
+├── Cargo.toml
+├── LICENSE
+├── README.md
+└── src
+    ├── crypt_lib.rs
+    ├── lib.rs
+    ├── randomkey.rs
+    ├── tera_lib.rs
+    └── utils.rs
+
+ +## Author + +- [Jesús Pérez](https://info.jesusperez.pro). + +## License + +MIT