-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
46 lines (43 loc) · 1.21 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "wx-sdk"
version = "0.0.9"
authors = ["johny.li <[email protected]>"]
edition = "2021"
description = "A Wechat SDK written in Rust"
readme = "README.md"
documentation = "https://docs.rs/wx-sdk/"
homepage = "https://github.com/ilovelll/wx-sdk"
repository = "https://github.com/ilovelll/wx-sdk"
license = "MIT"
keywords = ["wechat", "weixin", "sdk"]
categories = ["api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["mp"]
mp = []
pay = []
wxa = []
[dependencies]
anyhow = "1.0"
bytes = { version = "1.0", features = ["serde"] }
url = "2.2"
reqwest = { version = "0.11", features = ["blocking", "json", "multipart"] }
tokio = { version = "1.0", features = ["full"] }
# quick-xml = { version = "0.20", features = [ "serialize" ] }
serde = { version = "1.0", features = [ "derive" ] }
serde_derive = "1.0"
serde_json = "1.0"
thiserror = "1.0"
dotenv = "0.15"
futures = "0.3"
async-trait = "0.1"
roxmltree = { version = "0.14", features = [ "std" ] }
exile = "0.0.9"
rand = "0.8.4"
sha-1 = "0.9"
block-modes = "0.8.1"
aes = "0.7.4"
hex-literal = "0.3.3"
base64ct = {version = "1.0.0", features = [ "alloc"] }
[build-dependencies]
tokio-test = "0.4"