redesign
This commit is contained in:
parent
1fb689fb8f
commit
24e6ac26f1
7 changed files with 2354 additions and 197 deletions
14
Cargo.toml
14
Cargo.toml
|
|
@ -5,5 +5,19 @@ edition = "2024"
|
|||
|
||||
[dependencies]
|
||||
axum = { version = "0.8.8", features = ["ws"] }
|
||||
dotenvy = "0.15.7"
|
||||
futures = "0.3.31"
|
||||
oauth2 = "4.4.2"
|
||||
reqwest = { version = "0.13.2", features = ["json"] }
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.149"
|
||||
time = "0.3.47"
|
||||
tokio = { version = "1.49.0", features = ["full"] }
|
||||
tower-sessions = "0.15.0"
|
||||
|
||||
[profile.release]
|
||||
strip = true # Automatically strip symbols from the binary.
|
||||
opt-level = "z" # Optimize for size.
|
||||
lto = true # Enable Link Time Optimization
|
||||
codegen-units = 1 # Maximize LTO
|
||||
panic = "abort" # Abort on panic
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue