35 lines
1.3 KiB
TOML
35 lines
1.3 KiB
TOML
[package]
|
|
name = "alexandria"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[profile.release]
|
|
opt-level = 'z' # Optimize for size
|
|
lto = true # Enable link-time optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations
|
|
strip = true # Strip symbols from binary*
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8.4", features = [ "macros", "ws", "tokio" ] }
|
|
axum-extra = { version = "0.10.1", features = ["typed-header"] }
|
|
dotenvy = "0.15.7"
|
|
reqwest = { version = "0.12.22", features = ["json"] }
|
|
sea-orm = { version = "1.1.13", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" ] }
|
|
serde = "1.0.219"
|
|
serde_json = "1.0.140"
|
|
tokio = { version = "1.46.1", features = [ "full" ] }
|
|
utoipa = "5.4.0"
|
|
utoipa-axum = "0.2.0"
|
|
utoipa-swagger-ui = { version = "9", features = ["axum", "reqwest"] }
|
|
futures-util = "0.3.31"
|
|
log = "0.4.27"
|
|
pretty_env_logger = "0.5.0"
|
|
argon2 = { version = "0.5.3", features = ["password-hash", "alloc", "rand"] }
|
|
clap = { version = "4.5.42", features = ["derive"] }
|
|
inquire = "0.7.5"
|
|
rand_core = { version = "0.9.3", features = ["os_rng"] }
|
|
password-hash = { version = "0.5.0", features = ["getrandom"] }
|
|
jsonwebtoken = "9.3.1"
|
|
openssl = { version = "0.10.73", features = ["vendored"] }
|
|
quick-xml = { version = "0.38.1", features = ["serialize", "overlapped-lists"] }
|
|
|