pravah 0.2.0

Typed, stepwise agentic information flows for Rust
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 = "pravah"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed, stepwise agentic information flows for Rust"
readme = "README.md"
keywords = [
    "agent",
    "llm",
    "flow",
    "ai",
    "async",
]
categories = [
    "asynchronous",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vivsh/pravah"

[features]
default = [
    "provider-openai",
    "provider-anthropic",
    "provider-gemini",
    "provider-ollama",
]
provider-anthropic = []
provider-gemini = ["dep:gemini-rust"]
provider-genai = ["dep:genai"]
provider-ollama = []
provider-openai = []

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

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

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

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

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

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

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

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

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

[dependencies.dom_smoothie]
version = "0.17.0"

[dependencies.either]
version = "1.15.0"
features = ["serde"]

[dependencies.futures]
version = "0.3.32"

[dependencies.gemini-rust]
version = "1.7.1"
optional = true

[dependencies.genai]
version = "0.5.3"
optional = true

[dependencies.indexmap]
version = "2.14.0"
features = ["serde"]

[dependencies.reqwest]
version = "0.13.2"
features = ["json"]

[dependencies.schemars]
version = "0.8"

[dependencies.scraper]
version = "0.22"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

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

[dependencies.tracing]
version = "0.1"

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

[dev-dependencies.mockito]
version = "1"

[dev-dependencies.tempfile]
version = "3.27.0"