[package] name = "webera" description = "web apps" version = "0.0.0" edition = "2021" rust-version = "1.80.1" authors = ["José Luis Cruz "] repository = "https://github.com/andamira/webera" documentation = "https://docs.rs/webera" license = "MIT OR Apache-2.0" include = [ "/Cargo.toml", "/DOCS/*", "/src/**/*.rs", ] categories = ["web-programming", "wasm"] keywords = [] publish = true [features] # https://doc.rust-lang.org/cargo/reference/features.html # ============================================================================== # Features are grouped in the following categories: # - Miscellaneous # - Environment # - Modules # - Safety # - Nightly # - Capability # - Dependencies # # Sintax: # - ["name"]: Normal public-facing features. # - ["_name"]: Hidden extra capability features. # - ["__name"]: Hidden miscellaneous features. # # Features are in sync with: build/features.rs and src/_info/features.md #* Miscellaneous features *# # ------------------------------------------------------------------------------ # default = [] __dbg = [] # for debugging purposes, shows enabled features __no_test = [] # allows excluding examples from being tested #* Environment features *# # ------------------------------------------------------------------------------ alloc = [ # enables `alloc` functionality "devela/alloc", ] std = [ # disables `no_std` compatibility and enables `std` functionality "alloc", "devela/std", ] no_std = [ # enables functionality incompatible with or substitute of `std` "devela/no_std", ] #* Modules features *# # ------------------------------------------------------------------------------ #* Safety features trees *# # ------------------------------------------------------------------------------ # To use unsafe functionality: # 1. enable the desired `unsafe` feature. # 2. don't enable the `safe` feature for that module. safe = [ # forbids `unsafe` (and overrides unsafe features) ] # in specific modules: unsafe = [ # enables `unsafe` (as long as it isn't forbidden in the module) ] # for specific purposes: #* Nightly features tree *# # ------------------------------------------------------------------------------ nightly = [ "nightly_doc" ] # enables all the following features: nightly_doc = [] # doc_cfg, doc_notable_trait #* Capability features *# # ------------------------------------------------------------------------------ # The most complete versions of the documentation: _docsrs_stable = ["std", "unsafe"] _docsrs = ["_docsrs_stable", "nightly"] #* Dependencies features *# # ------------------------------------------------------------------------------ [dependencies] # ============================================================================== # non-optional: devela = "0.21.2" #devela = { path = "../devela" } # optional: [dev-dependencies] # ------------------------------------------------------------------------------ [build-dependencies] # ------------------------------------------------------------------------------ [package.metadata.docs.rs] # ============================================================================== no-default-features = true features = ["_docsrs"] rustdoc-args = [ "--html-in-header", "./DOCS/rustdoc-header.html" ] [badges] # ============================================================================== maintenance = { status = "experimental" }