From f3c01cfd86eabd7619e7bf076b7e55367462382b Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 27 Mar 2026 00:49:12 -0700 Subject: [PATCH] Feat: bootstrap zwus-rs v0.1 Co-authored-by: gpt-5.3-codex --- Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0e6e575 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "zwus" +version = "0.1.0" +edition = "2021" +rust-version = "1.70" +description = "Zero Width Unicode Steganography — hide text in invisible characters." +license = "WTFPL" +homepage = "https://zwus.pages.dev" +repository = "https://github.com/inzerosight/ZWUS-rs" +readme = "README.md" +authors = ["planetrenox@pm.me"] +keywords = ["zero-width", "steganography", "unicode", "encoder", "decoder"] +categories = ["encoding", "text-processing"] +include = ["src/**/*", "README.md", "LICENSE"] + +[dependencies]