Ok, using args and all

This commit is contained in:
Justine
2023-01-09 18:23:49 +01:00
parent 0cc2d8cbb6
commit f02f23f992
5 changed files with 383 additions and 51 deletions

View File

@ -1,9 +1,16 @@
[package]
name = "hello"
name = "ssw"
version = "0.1.0"
edition = "2021"
description = "A pretty basic web server, derived from the final chapter of the Rust book."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = 3
strip = true
lto = true
codegen-units = 1
[dependencies]
clap = { version = "4.0.32", features = ["derive"] }
config = "0.13.3"