[package]
edition = "2024"
name = "agentics-error"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared error types for the Agentics challenge platform."
homepage = "https://agentics.reify.ing"
readme = false
license = "AGPL-3.0-only"
repository = "https://github.com/agentic-science/Agentics"
[lib]
name = "agentics_error"
path = "src/lib.rs"
[dependencies.schemars]
version = "1.2"
features = ["preserve_order"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"postgres",
"uuid",
"chrono",
"json",
"macros",
"migrate",
]
[dependencies.thiserror]
version = "2"
[dependencies.zip]
version = "8"
[lints.clippy]
allow_attributes_without_reason = "warn"
arithmetic_side_effects = "warn"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_sign_loss = "warn"
clone_on_ref_ptr = "warn"
dbg_macro = "warn"
debug_assert_with_mut_call = "warn"
enum_glob_use = "warn"
expect_used = "warn"
expl_impl_clone_on_copy = "warn"
future_not_send = "warn"
indexing_slicing = "warn"
infallible_try_from = "warn"
invalid_upcast_comparisons = "warn"
iter_not_returning_iterator = "warn"
let_underscore_future = "warn"
lossy_float_literal = "warn"
mem_forget = "warn"
panic = "warn"
panic_in_result_fn = "warn"
rc_mutex = "warn"
string_slice = "warn"
todo = "warn"
unchecked_time_subtraction = "warn"
unimplemented = "warn"
unused_async = "warn"
unwrap_used = "warn"
wildcard_imports = "warn"
[lints.rust]
let_underscore_drop = "warn"
missing_debug_implementations = "warn"
redundant_imports = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"