[package] name = "simple-web-server" authors = ["Noah "] repository = "https://gitlab.com/NoahJelen/simple-web-server" description = "A web server, just without all the complexity of setting one up!" version = "0.2.0" edition = "2021" license = "GPL-3.0-or-later" [dependencies] rust-utils = "0.6.1" actix-web = "4.2.1" actix-files = "0.6.2" serde_derive = "1.0.152" serde = "1.0.152" lazy_static = "1.4.0" ctrlc = "3.2.4" [[bin]] name = "sws" path = "src/main.rs" [profile.release] strip = "symbols" lto = true codegen-units = 1 panic = "abort"