-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 901 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[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"