static-site-server-rs/Cargo.toml

20 lines
489 B
TOML
Raw Permalink Normal View History

[package]
name = "static-site-server-rs"
version = "0.1.0"
authors = ["Adler Neves <adlerosn@gmail.com>"]
2023-08-12 18:21:57 +00:00
edition = "2021"
2020-08-30 10:51:40 +00:00
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
threadpool = "^1"
http = "^0.2"
serde = { version = "^1", features = ["derive"] }
serde_yaml = "^0.9"
2023-07-02 05:39:35 +00:00
serde_json = "^1"
serde_xml = "^0.9"
chrono = "^0.4"
mime_guess = "^2"
2023-08-19 00:36:42 +00:00
clap = { version = "^4", features = ["derive"] }