Learn how to use Rust to build ATProto powered applications
at main 764 B view raw
1[package] 2name = "rusty_statusphere_example_app" 3version = "0.1.0" 4edition = "2024" 5 6[dependencies] 7actix-files = "0.6.6" 8actix-session = { version = "0.10", features = ["cookie-session"] } 9actix-web = "4.10.2" 10anyhow = "1.0.97" 11askama = "0.13" 12atrium-common = "0.1.1" 13atrium-api = "0.25.0" 14atrium-identity = "0.1.3" 15atrium-oauth = "0.1.0" 16chrono = "0.4.40" 17env_logger = "0.11.7" 18hickory-resolver = "0.24.1" 19log = "0.4.27" 20serde = { version = "1.0.219", features = ["derive"] } 21serde_json = "1.0.140" 22rocketman = "0.2.0" 23tokio = { version = "1", features = ["macros", "rt-multi-thread"] } 24dotenv = "0.15.0" 25thiserror = "1.0.69" 26async-sqlite = "0.5.0" 27async-trait = "0.1.88" 28 29[build-dependencies] 30askama = "0.13" 31 32 33[profile.dev.package.askama_derive] 34opt-level = 3