27 lines
625 B
TOML
27 lines
625 B
TOML
[package]
|
|
name = "webchain"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Muhammad Nauman Raza <devraza.hazard643@slmail.me>"]
|
|
description = "A fast, minimal bookmark manager."
|
|
readme = "README.md"
|
|
license = "AGPL-3.0"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
lto = true
|
|
strip = true
|
|
opt-level = "z" # Optimize for size.
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.86"
|
|
argon2 = "0.5.3"
|
|
rocket = "0.5.1"
|
|
rocket_dyn_templates = { version = "0.2.0", features = ["tera"] }
|
|
sqlx = { version = "0.7.4", features = [ "runtime-tokio", "tls-native-tls" ] }
|
|
|
|
[dependencies.rocket_db_pools]
|
|
version = "0.2.0"
|
|
features = ["sqlx_sqlite"]
|