rustatic 0.2.7

Web server for static site used primarily locally during development
[[bin]]
name = "rustatic"
path = "src/main.rs"

[dependencies.ascii]
version = "1.1"

[dependencies.clap]
features = ["derive"]
version = "4.3"

[dependencies.mime_guess]
version = "2.0.4"

[dependencies.tiny_http]
version = "0.12"

[lints.clippy]
absolute_paths = "allow"
arbitrary_source_item_ordering = "allow"
arithmetic_side_effects = "allow"
blanket_clippy_restriction_lints = "allow"
branches_sharing_code = "allow"
default_numeric_fallback = "allow"
implicit_return = "allow"
indexing_slicing = "allow"
min_ident_chars = "allow"
missing_docs_in_private_items = "allow"
option_if_let_else = "allow"
print_stdout = "allow"
single_call_fn = "allow"
std_instead_of_core = "allow"
string_slice = "allow"
unwrap_used = "allow"

[lints.clippy.cargo]
level = "deny"
priority = -1

[lints.clippy.complexity]
level = "deny"
priority = -1

[lints.clippy.correctness]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.clippy.perf]
level = "deny"
priority = -1

[lints.clippy.restriction]
level = "deny"
priority = -1

[lints.clippy.style]
level = "deny"
priority = -1

[lints.clippy.suspicious]
level = "deny"
priority = -1

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming::http-server"]
description = "Web server for static site used primarily locally during development"
edition = "2021"
homepage = "https://rustatic.code-maven.com/"
keywords = ["cli", "web", "static"]
license = "MIT OR Apache-2.0"
name = "rustatic"
readme = "README.md"
repository = "https://github.com/szabgab/rustatic/"
version = "0.2.7"