-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
88 lines (80 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
authors = ["owent <admin@owent.net>"]
categories = [
"network-programming",
"web-programming::http-server",
"web-programming::http-client",
"development-tools",
]
description = "Robot service for WXWork"
documentation = "https://github.com/owent/wxwork_robotd"
edition = "2021"
homepage = "https://crates.io/crates/wxwork_robotd"
include = [
"src/**/*.rs",
"Cargo.toml",
"Cross.toml",
"README.md",
"tools/__init__.py",
"tools/qyapi_wx_send_robot.py",
]
keywords = ["wxwork", "wework", "robot", "weixin", "wechat"]
license = "MIT OR Apache-2.0"
name = "wxwork_robotd"
readme = "README.md"
repository = "https://github.com/owent/wxwork_robotd"
version = "0.10.1"
[[bin]]
name = "wxwork_robotd"
[dependencies]
byteorder = "^1.3.2"
bytes = "^1.1.0"
chrono = ">=0.4.11"
futures = "^0.3.5"
handlebars = "^4.1.1"
hex = ">=0.3.2"
lazy_static = "^1.2.0"
log = ">=0.4.3"
mio-uds = "^0.6.7"
ring = ">=0.16.0"
rustls = ">=0.21.0"
quick-xml = ">=0.28.0"
regex = "^1.5.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "^1.0.33"
aes = ">=0.8.2"
cbc = ">=0.1.2"
md-5 = ">=0.10.0"
cipher = { version = ">=0.4.0", features = ["alloc"] }
# https://github.com/RustCrypto
actix-web = { version = "^4.3.0", features = ["rustls"] }
actix-files = { version = ">=0.6.2" }
[dependencies.awc]
features = ["rustls"]
version = "^3.1.0"
[dependencies.clap]
features = ["std", "suggestions", "color", "cargo", "help"]
version = "^4.2.0"
[dependencies.tokio]
features = ["full"]
version = "^1.15.0"
[features]
system-alloc = []
[profile]
[profile.dev]
codegen-units = 4
debug = true
debug-assertions = true
incremental = false
lto = false
panic = "abort"
rpath = false
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = "z"
panic = "abort"
rpath = false