[package]
edition = "2021"
name = "genesis-schema"
version = "26.6.11"
authors = ["Sean Chatman <sean@chatmangpt.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "KNHK V2 schema system — OpenAPI specs, RDF ontology, 43 YAWL pattern definitions, workflow schema validation."
readme = false
license = "MIT"
[lib]
name = "genesis_schema"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.uuid]
version = "1.18"
features = [
"v4",
"serde",
]
[dev-dependencies.tokio]
version = "1.47"
features = [
"full",
"full",
]
[lints.clippy]
assigning_clones = "allow"
blocks_in_conditions = "allow"
bool_comparison = "allow"
bool_to_int_with_if = "allow"
borrowed_box = "allow"
box_collection = "allow"
cargo_common_metadata = "allow"
case_sensitive_file_extension_comparisons = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
checked_conversions = "allow"
clone_on_copy = "allow"
cloned_instead_of_copied = "allow"
collapsible_if = "allow"
collection_is_never_read = "allow"
default_trait_access = "allow"
derivable_impls = "allow"
doc_lazy_continuation = "allow"
doc_link_with_quotes = "allow"
doc_markdown = "allow"
double_ended_iterator_last = "allow"
double_must_use = "allow"
empty_enum_variants_with_brackets = "allow"
empty_line_after_doc_comments = "allow"
enum_glob_use = "allow"
equatable_if_let = "allow"
expect_used = "warn"
explicit_auto_deref = "allow"
explicit_iter_loop = "allow"
explicit_write = "allow"
field_reassign_with_default = "allow"
filter_map_next = "allow"
flat_map_option = "allow"
float_cmp = "allow"
fn_params_excessive_bools = "allow"
format_in_format_args = "allow"
format_push_string = "allow"
from_iter_instead_of_collect = "allow"
from_over_into = "allow"
get_first = "allow"
get_unwrap = "allow"
if_not_else = "allow"
if_then_some_else_none = "allow"
implicit_clone = "allow"
implied_bounds_in_impls = "allow"
inconsistent_struct_constructor = "allow"
indexing_slicing = "allow"
inherent_to_string = "allow"
inline_always = "allow"
invalid_upcast_comparisons = "allow"
items_after_statements = "allow"
iter_cloned_collect = "allow"
iter_not_returning_iterator = "allow"
iter_without_into_iter = "allow"
large_digit_groups = "allow"
large_futures = "allow"
large_stack_arrays = "allow"
large_types_passed_by_value = "allow"
len_zero = "allow"
let_and_return = "allow"
let_underscore_untyped = "allow"
linkedlist = "allow"
lossy_float_literal = "allow"
manual_abs_diff = "allow"
manual_assert = "allow"
manual_bits = "allow"
manual_clamp = "allow"
manual_contains = "allow"
manual_filter = "allow"
manual_find_map = "allow"
manual_inspect = "allow"
manual_instant_elapsed = "allow"
manual_is_ascii_check = "allow"
manual_is_multiple_of = "allow"
manual_let_else = "allow"
manual_next_back = "allow"
manual_ok_or = "allow"
manual_range_contains = "allow"
manual_rem_euclid = "allow"
manual_rotate = "allow"
manual_saturating_arithmetic = "allow"
manual_string_new = "allow"
manual_strip = "allow"
many_single_char_names = "allow"
map_clone = "allow"
map_entry = "allow"
map_err_ignore = "allow"
map_flatten = "allow"
map_identity = "allow"
map_unwrap_or = "allow"
match_bool = "allow"
match_same_arms = "allow"
match_wild_err_arm = "allow"
mem_forget = "allow"
min_ident_chars = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
missing_panics_doc = "allow"
missing_trait_methods = "allow"
mixed_case_hex_literals = "allow"
mixed_read_write_in_expression = "allow"
module_inception = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
multiple_inherent_impl = "allow"
must_use_candidate = "allow"
mutex_atomic = "allow"
naive_bytecount = "allow"
needless_borrow = "allow"
needless_borrows_for_generic_args = "allow"
needless_continue = "allow"
needless_doctest_main = "allow"
needless_for_each = "allow"
needless_pass_by_value = "allow"
needless_question_mark = "allow"
needless_range_loop = "allow"
needless_return = "allow"
needless_update = "allow"
neg_multiply = "allow"
new_without_default = "allow"
non_send_fields_in_send_ty = "allow"
nonstandard_macro_braces = "allow"
only_used_in_recursion = "allow"
option_if_let_else = "allow"
option_map_or_none = "allow"
option_option = "allow"
or_fun_call = "allow"
panic = "warn"
panic_in_result_fn = "allow"
path_buf_push_overwrite = "allow"
pattern_type_mismatch = "allow"
precedence = "allow"
print_literal = "allow"
print_with_newline = "allow"
ptr_arg = "allow"
ptr_as_ptr = "allow"
pub_underscore_fields = "allow"
question_mark_used = "allow"
range_minus_one = "allow"
range_plus_one = "allow"
rc_buffer = "allow"
recursive_format_impl = "allow"
redundant_clone = "allow"
redundant_closure = "allow"
redundant_closure_for_method_calls = "allow"
redundant_else = "allow"
redundant_feature_names = "allow"
redundant_field_names = "allow"
redundant_locals = "allow"
redundant_pattern = "allow"
redundant_pub_crate = "allow"
redundant_slicing = "allow"
ref_binding_to_reference = "allow"
ref_option_ref = "allow"
rest_pat_in_fully_bound_structs = "allow"
return_and_then = "allow"
return_self_not_must_use = "allow"
same_item_push = "allow"
same_name_method = "allow"
seek_from_current = "allow"
self_named_constructors = "allow"
semicolon_if_nothing_returned = "allow"
separated_literal_suffix = "allow"
shadow_unrelated = "allow"
should_implement_trait = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
single_component_path_imports = "allow"
single_match_else = "allow"
stable_sort_primitive = "allow"
string_add = "allow"
string_add_assign = "allow"
string_lit_as_bytes = "allow"
struct_field_names = "allow"
suspicious_operation_groupings = "allow"
suspicious_to_owned = "allow"
suspicious_xor_used_as_pow = "allow"
test_attr_in_doctest = "allow"
tests_outside_test_module = "allow"
todo = "warn"
too_many_lines = "allow"
trailing_empty_array = "allow"
trait_duplication_in_bounds = "allow"
trivially_copy_pass_by_ref = "allow"
try_err = "allow"
tuple_array_conversions = "allow"
type_complexity = "allow"
type_repetition_in_bounds = "allow"
undocumented_unsafe_blocks = "allow"
unimplemented = "warn"
uninlined_format_args = "allow"
unit_arg = "allow"
unnecessary_box_returns = "allow"
unnecessary_cast = "allow"
unnecessary_filter_map = "allow"
unnecessary_fold = "allow"
unnecessary_join = "allow"
unnecessary_lazy_evaluations = "allow"
unnecessary_literal_bound = "allow"
unnecessary_map_or = "allow"
unnecessary_mut_passed = "allow"
unnecessary_operation = "allow"
unnecessary_self_imports = "allow"
unnecessary_sort_by = "allow"
unnecessary_struct_initialization = "allow"
unnecessary_to_owned = "allow"
unnecessary_wraps = "allow"
unneeded_field_pattern = "allow"
unneeded_wildcard_pattern = "allow"
unreadable_literal = "allow"
unsafe_derive_deserialize = "allow"
unused_async = "allow"
unused_peekable = "allow"
unused_rounding = "allow"
unused_self = "allow"
unused_unit = "allow"
unwrap_in_result = "allow"
unwrap_or_default = "allow"
unwrap_used = "warn"
upper_case_acronyms = "allow"
use_self = "allow"
useless_asref = "allow"
useless_format = "allow"
useless_vec = "allow"
vec_box = "allow"
vec_init_then_push = "allow"
while_let_on_iterator = "allow"
wildcard_enum_match_arm = "allow"
wildcard_imports = "allow"
write_literal = "allow"
wrong_self_convention = "allow"
zero_sized_map_values = "allow"
zombie_processes = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "allow"
missing_docs = "allow"
unsafe_code = "warn"
unused_variables = "allow"
warnings = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(benchmark_mode)"]