-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
39 lines (32 loc) · 878 Bytes
/
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
[workspace]
members = [
"crates/robbb",
"crates/robbb_db",
"crates/robbb_commands",
"crates/robbb_util",
]
resolver = "2"
[workspace.dependencies]
serenity = { version = "0.12.1", default-features = false, features = [
"collector",
"builder",
"cache",
"chrono",
"client",
"gateway",
"model",
"http",
"utils",
"rustls_backend",
"temp_cache",
"tokio_task_builder",
] }
poise = "0.6.1"
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
debug = true
[patch.crates-io]
#poise = { git = "https://github.com/kangalioo/poise", rev = "0f2eb876397d1712d38432adc759ca3b9186d7ff" }
#serenity = { git = "https://github.com/bumblepie/serenity", rev = "1fba7ba6bcf0a9fd4f645c265b42fe9bf8c45bc4" }
#serenity = { git = "https://github.com/serenity-rs/serenity", rev = "5363f2a8a362dc9bc210c9a87da985d43ab7faca" }