[package]
edition = "2021"
name = "wraith-api"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AI provider API client for the WRAITH coding agent"
homepage = "https://github.com/Sulaiman-Dauda/wraith"
readme = false
license = "MIT"
[lib]
name = "wraith_api"
path = "src/lib.rs"
[[test]]
name = "client_integration"
path = "tests/client_integration.rs"
[[test]]
name = "openai_compat_integration"
path = "tests/openai_compat_integration.rs"
[[test]]
name = "provider_client_integration"
path = "tests/provider_client_integration.rs"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.runtime]
version = "0.1.0"
package = "wraith-runtime"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"time",
]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
explicit_counter_loop = "allow"
format_push_string = "allow"
if_same_then_else = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
single_match_else = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unnested_or_patterns = "allow"
unused_self = "allow"
useless_format = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"