-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (50 loc) · 1.14 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
[workspace]
default-members = ["packages/bot"]
members = [
"migration",
"packages/autorole",
"packages/bot",
"packages/common",
"packages/db",
"packages/johnny",
"packages/logger",
"packages/pride",
"packages/tui",
]
[workspace.package]
authors = ["newtykins"]
edition = "2021"
publish = false
version = "0.1.0"
[workspace.dependencies]
cfg_aliases = "0.1.1"
color-eyre = "0.6.2"
crossterm = "0.26.1"
image = "0.24.6"
poise = "0.5.5"
ratatui = "0.22.0"
rayon = "1.7.0"
reqwest = "0.11.18"
sea-orm = { version = "0.11.3", features = ["runtime-tokio-rustls", "macros"] }
serde = "1.0.171"
serenity = { version = "0.11.5", default-features = false, features = [
"client",
"gateway",
"rustls_backend",
"model",
"cache",
] }
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread"] }
[workspace.metadata.cross.target.aarch64-unknown-linux-gnu]
dockerfile = "./docker/Dockerfile.aarch64"
[workspace.metadata.cargo-all-features]
always_include_features = ["sqlite"]
denylist = ["postgres", "mysql"]
[profile.dev]
opt-level = 0
overflow-checks = false
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true