[package] name = "machinate" version = "0.0.0" authors = ["Johnathan C Maudlin "] description = "Build and run Virtual Machines" edition = "2021" keywords = [] license = "ISC" readme = "README.md" repository = "https://github.com/automata-software-labs/machinate" rust-version = "1.74" [dependencies] axum = "0.7.0" serde = { version = "1.0.0", features = ["derive"] } tokio = { version = "1", features = ["full"] } [lints.clippy] all = "warn" cargo = "allow" cargo_common_metadata = "allow" pedantic = "warn" # Documentation missing_docs_in_private_items = "allow" missing_errors_doc = "allow" undocumented_unsafe_blocks = "allow" # Restrictions as_conversions = "warn" dbg_macro = "warn" empty_structs_with_brackets = "warn" from_over_into = "warn" get_unwrap = "warn" if_then_some_else_none = "warn" let_underscore_must_use = "warn" map_err_ignore = "warn" rc_buffer = "warn" rc_mutex = "warn" rest_pat_in_fully_bound_structs = "warn" str_to_string = "warn" string_add = "warn" string_slice = "warn" string_to_string = "warn" unneeded_field_pattern = "warn" unseparated_literal_suffix = "warn" unwrap_used = "warn" [lints.rust] missing_docs = "allow"