This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
75 lines (60 loc) · 1.53 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
[package]
name = "walle-q"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.walle-core]
version = "0.7.4"
# git = "https://github.com/abrahum/Walle-core.git"
features = ["impl-obc", "websocket", "http", "alt"]
[dependencies]
ricq = { version = "0.1.20", git = "https://github.com/lz1998/ricq.git" }
ricq-core = { version = "0.1.20", git = "https://github.com/lz1998/ricq.git" }
prost = "0.9"
tokio = { version = "1", features = ["full"] }
tokio-util = "*"
futures-util = "*"
async-trait = "*"
async-recursion = "*"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rmp-serde = "1.0.0"
toml = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "time"] }
tracing-appender = "0.2"
time = { version = "0.3", features = ["macros"] }
chrono = "0.4"
uuid = "1.0"
clap = { version = "4.1.*", features = ["derive"] }
cached = "0.42"
bytes = "1.1"
colored = "2"
rand = "0.8"
once_cell = "1"
dashmap = "5.3"
silk-rs = { version = "0.2", optional = true }
image = "0.24"
sled = "0.34"
rusty-leveldb = "1.0.3"
uri-reader = { git = "https://github.com/abrahum/uri-reader", features = [
"vendored",
] }
md5 = "0.7"
hex = "0.4"
base64 = "0.21"
sha2 = "0.10"
[features]
vendored = ["uri-reader/vendored"]
silk = ["silk-rs"]
rustls = ["uri-reader/rustls"]
[[bin]]
name = "walle-q"
[profile.release]
lto = true
codegen-units = 1
opt-level = 'z'
debug = false
debug-assertions = false
overflow-checks = false
strip = true