# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [workspace.package] license = "MIT OR Apache-2.0" edition = "2021" rust-version = "1.64.0" # MSRV include = [ "build.rs", "src/**/*", "Cargo.toml", "LICENSE*", "README.md", "benches/**/*", "examples/**/*" ] [package] name = "webio-rs" version = "0.0.1-aplha" description = "A simple to use, efficient Web App Framework ( IN DEVELOPMENT)" categories = ["webapp"] keywords = [ "webapp", "cli", ] license.workspace = true edition.workspace = true rust-version.workspace = true include.workspace = true [dependencies] clap = "4.1.4" [lib] name = "webio_rs" path = "src/lib.rs" test = true doctest = true bench = true doc = true plugin = false proc-macro = false harness = true # Use libtest harness. edition = "2021" # The edition of the target. crate-type = ["lib"] # The crate types to generate. required-features = [] # Features required to build this target (N/A for lib).