-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (52 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
58 lines (52 loc) · 1.28 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "wechat-agent-rs"
version = "0.1.0"
edition = "2024"
description = "Rust SDK for WeChat Agent (iLink Bot) — ported from frostming/weixin-agent-sdk"
license = "MIT"
repository = "https://github.com/rararulab/wechat-agent-rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
aes = "0.8"
ecb = "0.1"
block-padding = "0.3"
cipher = { version = "0.4", features = ["alloc"] }
qrcode = "0.14"
mime_guess = "2"
tempfile = "3"
async-trait = "0.1"
snafu = "0.9"
rand = "0.9"
hex = "0.4"
dirs = "6"
tracing = "0.1"
uuid = { version = "1", features = ["v4"] }
regex-lite = "0.1"
chrono = "0.4"
anyhow = "1"
tracing-subscriber = "0.3"
base64 = "0.22"
md5 = "0.7"
urlencoding = "2"
[dev-dependencies]
tokio-test = "0.4"
[[example]]
name = "echo_bot"
path = "examples/echo_bot.rs"
[[example]]
name = "openai_bot"
path = "examples/openai_bot.rs"
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
redundant_pub_crate = "allow"