slack status without the slack
status.zzstoatzz.io
hatk
statusphere
1[package]
2name = "nate-status"
3version = "0.1.0"
4edition = "2024"
5# Based on Bailey Townsend's Rusty Statusphere example app
6# https://github.com/fatfingers23/rusty_statusphere_example_app
7
8[dependencies]
9actix-files = "0.6.6"
10actix-session = { version = "0.10", features = ["cookie-session"] }
11actix-web = "4.10.2"
12actix-multipart = "0.6"
13anyhow = "1.0.97"
14askama = "0.13"
15atrium-common = "0.1.1"
16atrium-api = "0.25.0"
17atrium-identity = "0.1.3"
18atrium-oauth = "0.1.0"
19chrono = "0.4.40"
20env_logger = "0.11.7"
21hickory-resolver = "0.24.1"
22log = "0.4.27"
23serde = { version = "1.0.219", features = ["derive"] }
24serde_json = "1.0.140"
25rocketman = "0.2.0"
26tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
27futures-util = "0.3"
28dotenv = "0.15.0"
29thiserror = "1.0.69"
30async-sqlite = "0.5.0"
31async-trait = "0.1.88"
32rand = "0.8"
33reqwest = { version = "0.12", features = ["json"] }
34once_cell = "1.19"
35hmac = "0.12"
36sha2 = "0.10"
37hex = "0.4"
38url = "2.5"
39
40[build-dependencies]
41askama = "0.13"
42
43
44[profile.dev.package.askama_derive]
45opt-level = 3