[package]
edition = "2024"
rust-version = "1.85.0"
name = "akribes-sdk"
version = "0.22.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client SDK for the Akribes workflow server"
homepage = "https://akribes.ai"
documentation = "https://akribes.ai/sdks/rust/"
readme = "README.md"
keywords = [
"akribes",
"ai",
"llm",
"agent",
"sdk",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/PodestaAI/akribes-sdks"
resolver = "2"
[features]
default = []
[lib]
name = "akribes_sdk"
path = "src/lib.rs"
[[example]]
name = "document_upload"
path = "examples/document_upload.rs"
[[example]]
name = "quick_start"
path = "examples/quick_start.rs"
[[example]]
name = "smoke"
path = "examples/smoke.rs"
[[example]]
name = "subscribe_first"
path = "examples/subscribe_first.rs"
[[test]]
name = "bench"
path = "tests/bench.rs"
[[test]]
name = "clients_locks"
path = "tests/clients_locks.rs"
[[test]]
name = "convert"
path = "tests/convert.rs"
[[test]]
name = "documents"
path = "tests/documents.rs"
[[test]]
name = "executions"
path = "tests/executions.rs"
[[test]]
name = "live"
path = "tests/live.rs"
[[test]]
name = "mcp"
path = "tests/mcp.rs"
[[test]]
name = "resolve_publish_errors"
path = "tests/resolve_publish_errors.rs"
[[test]]
name = "run_stream"
path = "tests/run_stream.rs"
[[test]]
name = "runtime_events"
path = "tests/runtime_events.rs"
[[test]]
name = "sse_stream"
path = "tests/sse_stream.rs"
[dependencies.akribes-types]
version = "0.22.0"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.reqwest]
version = "0.13.2"
features = [
"json",
"native-tls",
"charset",
"http2",
"stream",
"multipart",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.serde_urlencoded]
version = "0.7"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.49.0"
features = [
"rt",
"rt-multi-thread",
"time",
"sync",
"macros",
]
[dependencies.tokio-util]
version = "0.7.18"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.urlencoding]
version = "2"
[dependencies.uuid]
version = "1.23.0"
features = [
"v4",
"serde",
]
[dev-dependencies.mockito]
version = "1.6.1"
[lints.clippy]
collapsible_match = "allow"
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"
large_enum_variant = "allow"
too_many_arguments = "allow"
type_complexity = "allow"