[package]
edition = "2024"
name = "aether-utils"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared utilities for the Aether AI agent framework"
readme = "README.md"
keywords = [
"aether",
"utilities",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/jcarver989/aether"
[package.metadata.dist]
dist = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "utils"
path = "src/lib.rs"
[dependencies.futures]
version = "^0.3.31"
[dependencies.regex]
version = "^1.12.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.tokio]
version = "^1.49.0"
features = ["full"]
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.tempfile]
version = "3.25"
[lints.clippy]
absolute_paths = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
pub_underscore_fields = "allow"
return_self_not_must_use = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1