[package]
edition = "2021"
rust-version = "1.80"
name = "nexo-taskflow"
version = "0.1.3"
authors = ["Cristian Garcia <informacion@cristiangarcia.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Long-running multi-step task orchestration runtime for Nexo agents."
homepage = "https://lordmacu.github.io/nexo-rs/"
documentation = "https://lordmacu.github.io/nexo-rs/"
readme = "README.md"
keywords = [
"agent",
"llm",
"ai",
"nats",
"framework",
]
categories = [
"asynchronous",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lordmacu/nexo-rs"
[lib]
name = "nexo_taskflow"
path = "src/lib.rs"
[[test]]
name = "e2e_test"
path = "tests/e2e_test.rs"
[[test]]
name = "race_audit"
path = "tests/race_audit.rs"
[[bench]]
name = "tick"
path = "benches/tick.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.libsqlite3-sys]
version = "0.30"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"sqlite",
"runtime-tokio",
]
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"serde",
"macro-diagnostics",
"v4",
"serde",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt-multi-thread",
]
[lints.clippy]
await_holding_lock = "allow"
blocks_in_conditions = "allow"
bool_assert_comparison = "allow"
cmp_owned = "allow"
collapsible_if = "allow"
derivable_impls = "allow"
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"
field_reassign_with_default = "allow"
if_same_then_else = "allow"
incompatible_msrv = "allow"
io_other_error = "allow"
large_enum_variant = "allow"
len_without_is_empty = "allow"
let_and_return = "allow"
manual_ignore_case_cmp = "allow"
manual_strip = "allow"
match_like_matches_macro = "allow"
needless_as_bytes = "allow"
needless_borrows_for_generic_args = "allow"
needless_lifetimes = "allow"
print_literal = "allow"
question_mark = "allow"
redundant_closure = "allow"
result_large_err = "allow"
should_implement_trait = "allow"
single_char_pattern = "allow"
too_many_arguments = "allow"
trim_split_whitespace = "allow"
type_complexity = "allow"
unnecessary_literal_unwrap = "allow"
unnecessary_map_or = "allow"
unnecessary_to_owned = "allow"
unwrap_or_default = "allow"
vec_init_then_push = "allow"