tinyagents 0.1.0

A Rust LLM orchestration library inspired by LangChain and LangGraph.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "tinyagents"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust LLM orchestration library inspired by LangChain and LangGraph."
readme = "README.md"
keywords = [
    "llm",
    "agents",
    "graph",
    "langchain",
    "langgraph",
]
categories = [
    "asynchronous",
    "api-bindings",
]
license = "GPL-3.0-only"
repository = "https://github.com/tinyhumansai/rustagents"

[features]
default = []
openai = ["dep:reqwest"]

[lib]
name = "tinyagents"
path = "src/lib.rs"

[[example]]
name = "agent_loop_tools"
path = "examples/agent_loop_tools.rs"

[[example]]
name = "basic_graph"
path = "examples/basic_graph.rs"

[[example]]
name = "durable_graph"
path = "examples/durable_graph.rs"

[[example]]
name = "openai_chat"
path = "examples/openai_chat.rs"
required-features = ["openai"]

[[example]]
name = "openai_graph_agent"
path = "examples/openai_graph_agent.rs"
required-features = ["openai"]

[[example]]
name = "openai_self_blueprint"
path = "examples/openai_self_blueprint.rs"
required-features = ["openai"]

[[example]]
name = "openai_structured"
path = "examples/openai_structured.rs"
required-features = ["openai"]

[[example]]
name = "openai_tools"
path = "examples/openai_tools.rs"
required-features = ["openai"]

[[example]]
name = "rag_blueprint"
path = "examples/rag_blueprint.rs"

[[test]]
name = "e2e_agent_graph"
path = "tests/e2e_agent_graph.rs"

[[test]]
name = "e2e_durable_interrupt"
path = "tests/e2e_durable_interrupt.rs"

[[test]]
name = "e2e_embeddings"
path = "tests/e2e_embeddings.rs"

[[test]]
name = "e2e_graph_export"
path = "tests/e2e_graph_export.rs"

[[test]]
name = "e2e_parallel_agents"
path = "tests/e2e_parallel_agents.rs"

[[test]]
name = "e2e_rag_pipeline"
path = "tests/e2e_rag_pipeline.rs"

[[test]]
name = "e2e_repl_blueprint"
path = "tests/e2e_repl_blueprint.rs"

[[test]]
name = "e2e_steering"
path = "tests/e2e_steering.rs"

[[test]]
name = "e2e_subagents"
path = "tests/e2e_subagents.rs"

[[test]]
name = "graph_durable"
path = "tests/graph_durable.rs"

[[test]]
name = "harness_agent_loop"
path = "tests/harness_agent_loop.rs"

[[test]]
name = "language_pipeline"
path = "tests/language_pipeline.rs"

[[test]]
name = "live_checkpoint_resume"
path = "tests/live_checkpoint_resume.rs"

[[test]]
name = "live_steering"
path = "tests/live_steering.rs"

[[test]]
name = "live_subagents"
path = "tests/live_subagents.rs"

[[test]]
name = "repl_session"
path = "tests/repl_session.rs"

[[test]]
name = "serialization"
path = "tests/serialization.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.futures]
version = "0.3"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dev-dependencies.dotenvy]
version = "0.15"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "time",
]