generated from lum-rs/template_rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1.13 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
[package]
name = "lum_libs"
version = "0.2.1"
authors = ["Torben Schweren"]
edition = "2024"
rust-version = "1.85.0"
description = "Serves as a central collection and re-export of all external crates used in the lum framework to ensure consistent dependency versions across the framework"
readme = "README.md"
repository = "https://github.com/lum-rs/lum_libs"
license = "MIT"
keywords = ["framework"]
exclude = [".devcontainer", ".github", ".vscode"]
[profile.release]
debug = false
opt-level = 3
lto = true
[profile.dev]
debug = true
opt-level = 0
lto = false
[dependencies]
async-trait = "0.1.87"
dirs = "6.0.0"
downcast-rs = { version = "2.0.1", features = ["std"] }
fern = { version = "0.7.0", features = ["colored", "date-based"] }
humantime = "2.1.0"
log = { version = "0.4.26", features = ["serde", "std"] }
rustls = "0.23.23"
serde = { version = "1.0.215", features = ["derive"] }
serde-env = "0.2.0"
serde_json = "1.0.140"
serenity = { version = "0.12.4", features = ["full"] }
thiserror = "2.0.12"
tokio = { version = "1.41.1", features = ["full"] }
uuid = { version = "1.15.1", features = ["v4", "fast-rng", "serde", "macro-diagnostics"] }