rig-openapi-tools 0.1.5

Turn any OpenAPI spec into LLM-callable tools for rig
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 = "2021"
name = "rig-openapi-tools"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Turn any OpenAPI spec into LLM-callable tools for rig"
readme = "README.md"
keywords = [
    "openapi",
    "llm",
    "rig",
    "agent",
    "tools",
]
categories = [
    "web-programming",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/skharchikov/rig-openapi-tools"

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

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

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

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

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

[dependencies.anyhow]
version = "1"

[dependencies.openapiv3]
version = "2.2.0"

[dependencies.reqwest]
version = "0.13"
features = [
    "json",
    "rustls",
    "query",
]

[dependencies.rig-core]
version = "0.33"

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

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

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