-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
72 lines (59 loc) · 1.74 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
[package]
name = "moth"
version = "0.3.0"
edition = "2021"
[dependencies]
moth_core = { path = "moth_core" }
moth_events = { path = "moth_events" }
moth_commands = { path = "moth_commands" }
sqlx = { workspace = true }
tokio = { workspace = true }
poise = { workspace = true }
serenity = { workspace = true }
reqwest = { workspace = true }
parking_lot = { workspace = true }
dashmap = { workspace = true }
tracing-subscriber = "0.3.18"
dotenvy = "0.15.7"
bitflags = "2.8.0"
[workspace]
members = [ "moth_core", "moth_events", "moth_commands", "moth_filter", "moth_ansi", "moth_starboard"]
[workspace.dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "signal", "parking_lot"] }
sqlx = { version = "0.8", features = ["macros", "postgres", "runtime-tokio-rustls", "chrono"] }
reqwest = "0.12"
rand = "0.9"
small-fixed-array = { version = "0.4.5", features = ["nightly"] }
chrono = "0.4"
parking_lot = "0.12.1"
dashmap = "6"
unicode_names2 = "1.2.2"
image = "0.25.2"
unicode-segmentation = "1.12.0"
emojis = "0.6.4"
tracing = "0.1.40"
rustrict = "0.7.33"
regex = "1.11.1"
serde = "1"
serde_json = "1"
leptess = "0.14.0"
[workspace.dependencies.serenity]
git = "https://github.com/serenity-rs/serenity"
#path = "../serenity"
features = ["temp_cache"]
default-features = false
branch = "next"
[workspace.dependencies.poise]
git = "https://github.com/jamesbt365/poise"
features = ["cache"]
branch = "compile"
# patch for developing locally.
#[patch."https://github.com/serenity-rs/serenity".serenity]
#path = "../serenity"
#[patch.'https://github.com/serenity-rs/serenity']
#serenity = { git = 'https://github.com/jamesbt365/serenity', branch = 'next-downgrade-tokio-tungstenite' }
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1