bvplan/bvplan/Cargo.toml
2023-03-03 17:13:19 +01:00

49 lines
1.2 KiB
TOML

[package]
name = "bvplan"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "web"
build = "build.rs"
[[bin]]
name = "worker"
[profile.release]
codegen-units = 1
lto = "fat"
strip = true
panic = "abort"
[dependencies]
actix-web = "4.2.1"
actix-web-static-files = "4.0.1"
anyhow = { version = "1.0.66", features = ["backtrace"] }
askama = { version = "0.11.1", features = ["serde-json"] }
askama_actix = "0.13.0"
celery = { git = "https://github.com/rusty-celery/rusty-celery.git", branch = "main" }
chrono = "0.4.23"
diesel = { version = "2.0.2", features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes", "postgres", "chrono", "r2d2"] }
env_logger = "0.9.3"
envconfig = "0.10.0"
fancy-regex = "0.11.0"
lazy_static = "1.4.0"
log = "0.4.17"
minify-html = "0.10.8"
r2d2_redis = "0.14.0"
reqwest = "0.11.13"
scraper = "0.14.0"
serde = "1.0.148"
static-files = "0.2.3"
stdext = "0.3.1"
tokio = { version = "1.22.0", features = ["full"] }
untis = { git = "https://git.dergrimm.net/dergrimm/untis.rs.git", branch = "main" }
url = "2.3.1"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"
[build-dependencies]
static-files = "0.2.3"