-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
50 lines (45 loc) · 1.19 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
[package]
name = "pbrq"
version = "0.1.11"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
ricq = "0.1.19"
futures = "0.3"
async-trait = "0.1"
bytes = "1.1.0"
tokio-tungstenite = "0.16"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
base64 = "0.13"
lazy_static = "1"
clap = { version = "3.2", features = ["derive"] }
tower-http = { version = "0.3", features = ["auth", "fs", "cors"] }
prost = "0.9"
prost-types = "0.9"
thiserror = "1"
tracing = "0.1"
axum = { version = "0.5" }
cached = "0.30"
tracing-subscriber = { version = "0.3", features = ["fmt", "local-time"] }
time = { version = "0.3", features = ["macros", "local-offset"] }
dashmap = "5.2"
reqwest = { version = "0.11", features = ["native-tls-vendored"] }
chrono = "0.4"
xml-rs = "0.8"
async-recursion = "1.0.0"
md5 = "0.7"
ricq-core = "0.1.19"
[build-dependencies]
#lust-build = { version = "*", registry = "crates-byted" }
prost-build = { version = "0.9.0" }
[profile.release]
opt-level = 'z'
debug = false
lto = true
incremental = false
codegen-units = 1
strip = true
#panic = 'abort'