gitea_pages/backend/Cargo.toml

55 lines
1.2 KiB
TOML

[package]
name = "gitea_pages"
version = "0.1.0"
edition = "2021"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.6.4"
actix-web = "4.3.1"
anyhow = { version = "1.0.71", features = ["backtrace"] }
askama = "0.12.0"
async-trait = "0.1.68"
async_once = "0.2.6"
bb8 = "0.8.0"
celery = "0.5.3"
chrono = "0.4.24"
clap = { version = "4.2.7", features = ["derive"] }
dataloader = "0.16.0"
debug-ignore = "1.0.5"
diesel = { version = "2.0.4", features = [
"postgres",
"chrono",
"r2d2",
"uuid",
] }
env_logger = "0.10.0"
envconfig = "0.10.0"
git2 = "0.17.1"
gritea = "0.1.8"
hex-simd = "0.8.0"
http = "0.2.9"
http-auth-basic = "0.3.3"
juniper = { version = "0.15.11", features = ["uuid"] }
juniper_actix = "0.4.0"
lazy_static = "1.4.0"
log = "0.4.17"
ring = "0.16.20"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
stdext = "0.3.1"
tokio = { version = "1.28.0", features = ["full"] }
url = "2.3.1"
urlencoding = "2.1.2"
uuid-simd = "0.8.0"
uuidv7 = { version = "1.3.2", package = "uuid", features = ["serde"] }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"