[package]
name = "rigs"
version = "0.0.8"
edition = "2024"
description = "A orchestration framework for rig"
license = "MIT"
readme = "README.md"
keywords = ["rig", "orchestration", "agent"]
repository = "https://github.com/M4n5ter/rigs"
[lints.clippy]
clone_on_ref_ptr = "deny"
str_to_string = "deny"
needless_for_each = "deny"
dbg_macro = "warn"
empty_enum = "warn"
enum_glob_use = "warn"
exit = "warn"
filter_map_next = "warn"
fn_params_excessive_bools = "warn"
imprecise_flops = "warn"
inefficient_to_string = "warn"
linkedlist = "warn"
lossy_float_literal = "warn"
macro_use_imports = "warn"
match_on_vec_items = "warn"
match_wildcard_for_single_variants = "warn"
mem_forget = "warn"
needless_collect = "warn"
needless_continue = "warn"
option_option = "warn"
rest_pat_in_fully_bound_structs = "warn"
suboptimal_flops = "warn"
todo = "warn"
uninlined_format_args = "warn"
unnested_or_patterns = "warn"
unused_self = "warn"
verbose_file_reads = "warn"
[lints.rust]
unsafe_code = "deny"
rust-2018-idioms = { level = "warn", priority = -1 }
rust-2021-compatibility = { level = "warn", priority = -1 }
rust-2024-compatibility = { level = "warn", priority = -1 }
unreachable_pub = "warn"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
dashmap = { version = "6.1", features = ["serde"] }
futures = "0.3"
paste = "1.0"
petgraph = { version = "0.7", default-features = false, features = [
"stable_graph",
] }
rig-core = "0.11"
rigs-macro = { version = "0.0.2", path = "./rigs-macro" }
schemars = "1.0.0-alpha.17"
serde = { version = "1.0", features = [
"derive",
] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1.44", features = ["sync", "time"] }
tracing = "0.1"
twox-hash = "2.1"
uuid = { version = "1.16", features = ["v4", "serde"] }
zstd = "0.13"
[dev-dependencies]
anyhow = "1.0"
dotenv = "0.15"
mockall = "0.13"
tokio = { version = "1.44", features = [
"macros",
"rt",
"rt-multi-thread",
"test-util",
] }
tracing-subscriber = { version = "0.3", features = [
"env-filter",
] }