[package]
name = "ingot-cli"
description = "The `ingot` command-line compiler for the Ingot agent language."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
readme = "README.md"
keywords = ["ingot", "agent", "llm", "compiler", "deterministic"]
categories = ["command-line-utilities", "compilers", "development-tools"]
[[bin]]
name = "ingot"
path = "src/main.rs"
[features]
default = ["anthropic", "openai", "google", "remote-tools"]
providers = []
anthropic = ["ingot-runtime/anthropic", "providers"]
openai = ["ingot-runtime/openai", "providers"]
google = ["ingot-runtime/google", "providers"]
remote-tools = ["ingot-mcp/http"]
[dependencies]
ingot-compiler.workspace = true
ingot-runtime.workspace = true
ingot-mcp.workspace = true
ingot-sandbox.workspace = true
ingot-egress.workspace = true
ingot-studio.workspace = true
ingot-supervisor.workspace = true
ingot-conformance.workspace = true
ingot-language-service.workspace = true
ingot-backend-python.workspace = true
ingot-ir.workspace = true
ingot-package.workspace = true
ingot-source.workspace = true
ingot-syntax.workspace = true
ingot-diagnostics.workspace = true
ingot-lexer.workspace = true
anyhow = { workspace = true }
serde_json = { workspace = true }
clap = { workspace = true }
serde = { workspace = true }
toml = { workspace = true }
notify = { workspace = true }
[dev-dependencies]
ingot-ir.workspace = true
ingot-language-service.workspace = true
ingot-package.workspace = true
serde_json = { workspace = true }
ingot-mcp.workspace = true