[package]
edition = "2021"
rust-version = "1.75"
name = "agentic-llm"
version = "0.1.0"
authors = ["Agentic Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LLM adapters for OpenAI, Anthropic, Gemini, Ollama"
homepage = "https://github.com/aktraiser/framework_dasein-rust"
documentation = "https://docs.rs/agentic-llm"
readme = "README.md"
keywords = [
"ai",
"agents",
"llm",
"multi-agent",
"async",
]
categories = [
"asynchronous",
"api-bindings",
"development-tools",
]
license = "MIT"
repository = "https://github.com/aktraiser/framework_dasein-rust"
[features]
all = [
"openai",
"ollama",
"anthropic",
"gemini",
]
anthropic = []
default = [
"openai",
"ollama",
]
gemini = []
ollama = []
openai = ["async-openai"]
[lib]
name = "agentic_llm"
path = "src/lib.rs"
[dependencies.async-openai]
version = "0.27"
optional = true
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.43"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.mockall]
version = "0.13"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
assigning_clones = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cognitive_complexity = "allow"
collapsible_if = "allow"
collapsible_str_replace = "allow"
derivable_impls = "allow"
derive_partial_eq_without_eq = "allow"
doc_markdown = "allow"
explicit_iter_loop = "allow"
format_push_string = "allow"
future_not_send = "allow"
if_not_else = "allow"
items_after_statements = "allow"
let_and_return = "allow"
manual_strip = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_inception = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
needless_range_loop = "allow"
needless_raw_string_hashes = "allow"
new_ret_no_self = "allow"
option_if_let_else = "allow"
ptr_arg = "allow"
redundant_pub_crate = "allow"
ref_option = "allow"
return_self_not_must_use = "allow"
should_implement_trait = "allow"
significant_drop_in_scrutinee = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
single_char_pattern = "allow"
single_match_else = "allow"
struct_field_names = "allow"
suboptimal_flops = "allow"
to_string_trait_impl = "allow"
too_many_lines = "allow"
type_complexity = "allow"
uninlined_format_args = "allow"
unnecessary_literal_bound = "allow"
unnecessary_map_or = "allow"
unreadable_literal = "allow"
unused_async = "allow"
unused_self = "allow"
use_self = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "allow"
unsafe_code = "forbid"