[package] name = "quizler" version = "0.1.0-alpha" edition = "2021" description = "Offline quiz game" license = "MIT" authors = ["Jacobtread "] repository = "https://github.com/jacobtread/Quizler-v2" readme = "../README.md" keywords = ["quizler", "game"] [dependencies] # Actix async framework actix = "0.13" # Actix Web framework actix-web = "4" # Actix WebSocket actors actix-web-actors = "4" # Multipart form data actix-multipart = "0.6" # CORS actix-cors = "0.6.4" # Mimetypes mime = "0.3" # Logging log = "0.4" env_logger = "0.10" # Loading environment variables dotenvy = "0.15" # Utilities for working with futures futures-util = "0.3" # Cheaply clonable byte types bytes = "1.4" # Serialization and JSON serde = { version = "1", features = ["derive", "rc"] } serde_json = "1" # Random number generation rand_core = "0.6" # Public assets embedding embeddy = "0.1.1" # Inappropriate / profanity filtering rustrict = "0.7.6" [dependencies.uuid] version = "1.3.2" features = ["v4", "fast-rng", "macro-diagnostics", "serde"] # Optionally optimize for binary size # # [profile.release] # strip = true # opt-level = "z" # lto = true # codegen-units = 1