[package]
edition = "2024"
rust-version = "1.88.0"
name = "beetry-exec"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal beetry crate. For the public API, check the beetry crate."
readme = "README.md"
keywords = [
"behavior-tree",
"editor",
"plugin",
"execution",
"async",
]
categories = [
"asynchronous",
"concurrency",
"development-tools",
"gui",
"visualization",
]
license = "MIT"
repository = "https://github.com/skullim/beetry"
[lib]
name = "beetry_exec"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.beetry-core]
version = "0.2.0"
[dependencies.bon]
version = "3.9.1"
[dependencies.futures]
version = "0.3.32"
[dependencies.tokio]
version = "1.50.0"
features = [
"sync",
"time",
"macros",
]
[dependencies.tracing]
version = "0.1.44"
[lints.clippy]
assertions_on_result_states = "warn"
branches_sharing_code = "warn"
cfg_not_test = "warn"
clear_with_drain = "warn"
clone_on_ref_ptr = "warn"
coerce_container_to_any = "warn"
collection_is_never_read = "warn"
dbg_macro = "warn"
doc_include_without_cfg = "warn"
else_if_without_else = "warn"
empty_drop = "deny"
empty_enum_variants_with_brackets = "warn"
empty_structs_with_brackets = "warn"
exit = "deny"
fallible_impl_from = "warn"
filetype_is_file = "warn"
future_not_send = "warn"
get_unwrap = "warn"
if_then_some_else_none = "warn"
infinite_loop = "warn"
iter_on_single_items = "warn"
iter_with_drain = "warn"
large_include_file = "warn"
large_stack_frames = "warn"
let_underscore_must_use = "warn"
literal_string_with_formatting_args = "warn"
map_with_unused_argument_over_ranges = "warn"
missing_errors_doc = "allow"
mixed_read_write_in_expression = "warn"
mod_module_files = "deny"
multiple_crate_versions = "allow"
multiple_inherent_impl = "warn"
must_use_candidate = "allow"
needless_collect = "warn"
needless_pass_by_ref_mut = "warn"
needless_raw_strings = "warn"
needless_type_cast = "warn"
non_send_fields_in_send_ty = "warn"
non_zero_suggestions = "warn"
option_if_let_else = "warn"
or_fun_call = "warn"
partial_pub_fields = "warn"
print_stderr = "warn"
print_stdout = "warn"
rc_buffer = "warn"
read_zero_byte_vec = "warn"
redundant_clone = "warn"
redundant_pub_crate = "warn"
redundant_test_prefix = "warn"
redundant_type_annotations = "warn"
rest_pat_in_fully_bound_structs = "warn"
return_and_then = "warn"
search_is_some = "warn"
single_option_map = "warn"
suspicious_operation_groupings = "warn"
trailing_empty_array = "warn"
trait_duplication_in_bounds = "warn"
tuple_array_conversions = "warn"
unnecessary_self_imports = "warn"
unnecessary_struct_initialization = "warn"
unneeded_field_pattern = "warn"
unseparated_literal_suffix = "warn"
unused_peekable = "warn"
use_self = "warn"
while_float = "warn"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
closure-returning-async-block = "warn"
elided_lifetimes_in_paths = "warn"
explicit_outlives_requirements = "warn"
keyword_idents_2024 = "warn"
redundant-lifetimes = "warn"
unsafe_code = "deny"
unused_qualifications = "warn"
[lints.rustdoc]
unescaped_backticks = "warn"