[package] name = "stiglpc-server" version = "0.1.2" description = "The server for StiglPC. A chat platform" repository = "https://git.lpts.dev/StiglPC/StiglPC-Server" authors = ["StiglCZ", "Luna Driver"] license = "Unlicense" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] chrono = "0.4.24" rouille = "3.6.2" uuid = {version="1.3.2", features = ["v4","fast-rng"]} actix-web = "4" actix-ws = "0.2.5" tokio = { version = "1", features = ["rt", "time", "macros"] } futures = "0.3.28" [profile.release] strip = true # Automatically strip symbols from the binary. opt-level = 3 # Optimize for performance. lto = true