[package]
edition = "2021"
rust-version = "1.85"
name = "ingot-runtime"
version = "0.5.1"
authors = ["Heptapus Group"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference interpreter for the Ingot Agent IR: executes an agent and enforces its policy and budgets."
readme = false
license = "Apache-2.0"
repository = "https://github.com/mathissdupont/ingot"
[features]
anthropic = ["http"]
default = []
google = ["http"]
http = ["dep:ureq"]
openai = ["http"]
[lib]
name = "ingot_runtime"
path = "src/lib.rs"
[[test]]
name = "anthropic_wire"
path = "tests/anthropic_wire.rs"
[[test]]
name = "google_wire"
path = "tests/google_wire.rs"
[[test]]
name = "openai_wire"
path = "tests/openai_wire.rs"
[dependencies.ingot-ir]
version = "0.5.1"
[dependencies.ingot-lang-types]
version = "0.5.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.ureq]
version = "3.3"
features = ["json"]
optional = true
[dev-dependencies.toml]
version = "0.8"