[package]
edition = "2024"
rust-version = "1.93.0"
name = "erio-tools"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tool registry and execution for Erio"
documentation = "https://docs.rs/erio-tools"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/NomanworkGroup/erio"
resolver = "2"
[lib]
name = "erio_tools"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.erio-core]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"rt",
"macros",
]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
ref_option = "allow"
trivially_copy_pass_by_ref = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"