-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (32 loc) · 849 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
[package]
name = "ameca_pg"
version = "0.1.0"
edition = "2021"
[dependencies]
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["tracing", "env-filter"] }
tokio = { version = "1.36.0", features = ["full"] }
tracing-appender = "0.2.3"
dotenv = "0.15.0"
sqlx = {version = "0.8.2",features = ["chrono","postgres","runtime-tokio"]}
poise = { version = "0.6.1", features = ["cache"] }
lexopt = "0.3.0"
static_assertions = "1.1.0"
regex = "1.11.0"
dashmap = "6.1.0"
miniserde = "0.1.40"
sha2 = "0.10.8"
[patch.crates-io]
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "current" }
[profile.dev]
incremental = true
[profile.release]
opt-level = 3
debug = true
debug-assertions = false
lto = "thin"
panic = "unwind"
incremental = true
overflow-checks = false
[build]
rustflags=["-Ctarget-feature=+avx2"]