-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (33 loc) · 809 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
40
[package]
name = "scripty"
version = "1.3.0"
authors = ["0/0 <[email protected]>"]
edition = "2018"
license = "EUPL-1.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = "fat"
codegen-units = 1
[workspace]
members = [
"scripty_macros",
"scripty_commands",
"scripty_db",
"scripty_core",
"scripty_audio",
"scripty_audio_utils",
"scripty_config",
"scripty_metrics",
"scripty_webserver",
"scripty_utils",
]
[dependencies]
scripty_core = { path = "scripty_core" }
tracing = "0.1"
# fixes recursive dependency error: IS NOT UNUSED
indexmap = "=1.6.2"
[dependencies.tokio]
version = "1.8"
features = ["full"]
[patch.crates-io]
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "current" }