[package]
name = "stringencrypt"
version = "1.0.0"
edition = "2021"
rust-version = "1.70"
license = "Apache-2.0"
description = "Official Rust client for the StringEncrypt.com Web API — generate polymorphic decryptors for many programming languages."
keywords = ["stringencrypt", "encryption", "obfuscation", "api-client", "code-generation"]
homepage = "https://www.stringencrypt.com"
repository = "https://github.com/PELock/StringEncrypt-Rust"
documentation = "https://docs.rs/stringencrypt"
readme = "README.md"
authors = ["Bartosz Wójcik (https://www.pelock.com)"]
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = "0.22"
flate2 = "1"
url = "2"
[lib]
name = "stringencrypt"
path = "src/lib.rs"