[package] name = "backend" version = "0.1.0" edition = "2021" [[bin]] name = "api" [[bin]] name = "worker" [profile.release] codegen-units = 1 lto = "fat" strip = true panic = "abort" [dependencies] actix-cors = "0.6.4" actix-web = "4.2.1" anyhow = { version = "1.0.66", features = ["backtrace"] } 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" juniper = { version = "0.15.10", features = ["scalar-naivetime"] } juniper_actix = "0.4.0" lazy_static = "1.4.0" log = "0.4.17" r2d2_redis = "0.14.0" regex = "1.7.1" reqwest = "0.11.13" scraper = "0.14.0" serde = "1.0.148" 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"