[package]
edition = "2021"
rust-version = "1.75"
name = "agnt-net"
version = "0.3.1"
authors = ["doop"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP backend implementation for the agnt agent runtime — Ollama, OpenAI, Anthropic with streaming and retry."
homepage = "https://github.com/hmbldv/agnt"
documentation = "https://docs.rs/agnt-net"
readme = "README.md"
keywords = [
"agent",
"llm",
"ollama",
"openai",
"anthropic",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hmbldv/agnt"
[features]
default = []
fuzz-api = []
[lib]
name = "agnt_net"
path = "src/lib.rs"
[dependencies.agnt-core]
version = "0.3"
[dependencies.native-tls]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
features = [
"std",
"attributes",
]
default-features = false
[dependencies.ureq]
version = "2.12"
features = [
"json",
"native-tls",
"gzip",
]
default-features = false