[package]
edition = "2021"
name = "limit-agent"
version = "0.0.24"
authors = ["Mário Idival <marioidival@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent runtime for AI applications with tool registry, parallel execution, and Docker sandbox support."
readme = "README.md"
keywords = [
"ai",
"agent",
"automation",
"docker",
"sandbox",
]
categories = [
"development-tools",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/marioidival/limit"
[lib]
name = "limit_agent"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bincode]
version = "1.3"
[dependencies.bollard]
version = "0.16"
[dependencies.futures]
version = "0.3"
[dependencies.limit-llm]
version = "0.0.24"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.tokio-util]
version = "0.7"
features = ["io"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dev-dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
]