This repository was archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (66 loc) · 1.32 KB
/
Cargo.toml
File metadata and controls
77 lines (66 loc) · 1.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "atri_bot"
version = "0.9.4"
edition = "2021"
authors = ["LaoLittle"]
description = "A simple bot"
readme = "README.md"
keywords = [
"Atri",
"plugin",
"oicq"
]
license = "MPL-2.0"
homepage = "https://github.com/LaoLittle/atri_bot"
repository = "https://github.com/LaoLittle/atri_bot"
[dependencies]
# serilize
serde = "1"
serde_json = "1"
toml = "0.5"
prost = { version = "0.9", default-features = false }
bytes = "1"
tracing = "0"
tracing-subscriber = { version = "0", features = ["fmt", "local-time"] }
tracing-appender = "0"
async-trait = "0"
time = { version = "0", features = ["macros", "local-offset", "formatting"] }
regex = "1"
dashmap = "5"
rand = "0"
futures = "0"
# plugin
libloading = "0"
backtrace = "0"
# terminal
crossterm = "0"
libc = "0"
cfg-if = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"mio",
"io-std",
"io-util",
"fs",
"signal",
]
[dependencies.ricq]
git = "https://github.com/AtriKawaii/ricq.git"
#version = "0.1.19"
#[dependencies.ricq-guild]
#version = "0.1.0"
[dependencies.atri_ffi]
version = "0.9.0"
[target."cfg(windows)".dependencies.winapi]
version = "0"
features = ["winnt"]
[profile.release]
lto = true
strip = true
codegen-units = 1
[build-dependencies]
serde = { version = "1", features = ["derive"] }
toml = "0.5"