[package]
edition = "2021"
name = "wechat_work_crypto"
version = "0.1.0"
authors = ["Anonymous <dnrops@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust implementation of WeChat Work (企业微信) message encryption/decryption library"
homepage = "https://gitcode.net/dnrops/wechat_work_crypto"
documentation = "https://docs.rs/wechat_work_crypto"
readme = "README.md"
keywords = [
"wechat",
"wecom",
"crypto",
"encryption",
]
categories = [
"cryptography",
"api-bindings",
]
license = "MIT"
repository = "https://gitcode.net/dnrops/wechat_work_crypto"
[lib]
name = "wechat_work_crypto"
path = "src/lib.rs"
[[bin]]
name = "wechat_work_crypto"
path = "src/main.rs"
[[test]]
name = "key_test"
path = "tests/key_test.rs"
[dependencies.aes]
version = "0.8"
[dependencies.base64]
version = "0.21"
[dependencies.cbc]
version = "0.1"
[dependencies.hex]
version = "0.4"
[dependencies.quick-xml]
version = "0.31"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1.10"
[dependencies.sha1]
version = "0.10"
[dependencies.thiserror]
version = "1.0"