178 lines
3.2 KiB
TOML
178 lines
3.2 KiB
TOML
# 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"
|
|
rust-version = "1.88"
|
|
name = "mentra"
|
|
version = "0.18.3"
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "An agent runtime for tool-using LLM applications"
|
|
homepage = "https://github.com/oops-rs/mentra"
|
|
documentation = "https://docs.rs/mentra"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"agents",
|
|
"llm",
|
|
"runtime",
|
|
"tools",
|
|
"ai",
|
|
]
|
|
categories = [
|
|
"asynchronous",
|
|
"development-tools",
|
|
]
|
|
license = "MIT"
|
|
repository = "https://github.com/oops-rs/mentra"
|
|
|
|
[features]
|
|
default = ["responses-websocket"]
|
|
openai-oauth = ["dep:ring"]
|
|
responses-websocket = ["mentra-provider/responses-websocket"]
|
|
test-utils = []
|
|
|
|
[lib]
|
|
name = "mentra"
|
|
path = "src/lib.rs"
|
|
|
|
[[test]]
|
|
name = "agent_runtime"
|
|
path = "tests/agent_runtime.rs"
|
|
|
|
[[test]]
|
|
name = "branching"
|
|
path = "tests/branching.rs"
|
|
|
|
[[test]]
|
|
name = "mcp_sse_smoke"
|
|
path = "tests/mcp_sse_smoke.rs"
|
|
|
|
[[test]]
|
|
name = "public_api"
|
|
path = "tests/public_api.rs"
|
|
|
|
[[test]]
|
|
name = "responses_transport"
|
|
path = "tests/responses_transport.rs"
|
|
|
|
[[test]]
|
|
name = "skills_api"
|
|
path = "tests/skills_api.rs"
|
|
|
|
[[bench]]
|
|
name = "long_session"
|
|
path = "benches/long_session.rs"
|
|
harness = false
|
|
required-features = ["test-utils"]
|
|
|
|
[dependencies.async-trait]
|
|
version = "0.1.89"
|
|
|
|
[dependencies.base64]
|
|
version = "0.22.1"
|
|
|
|
[dependencies.directories]
|
|
version = "6.0.0"
|
|
|
|
[dependencies.futures-util]
|
|
version = "0.3.31"
|
|
|
|
[dependencies.glob-match]
|
|
version = "0.2"
|
|
|
|
[dependencies.libc]
|
|
version = "0.2"
|
|
|
|
[dependencies.mentra-provider]
|
|
version = "0.5.1"
|
|
default-features = false
|
|
|
|
[dependencies.rand]
|
|
version = "0.9.2"
|
|
|
|
[dependencies.regex]
|
|
version = "1.12.2"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.12.23"
|
|
features = [
|
|
"json",
|
|
"rustls-tls",
|
|
"stream",
|
|
]
|
|
default-features = false
|
|
|
|
[dependencies.ring]
|
|
version = "0.17.14"
|
|
optional = true
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.39"
|
|
features = ["bundled"]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.228"
|
|
features = ["derive"]
|
|
|
|
[dependencies.serde_json]
|
|
version = "1.0.149"
|
|
|
|
[dependencies.serde_yaml_ng]
|
|
version = "0.10"
|
|
|
|
[dependencies.similar]
|
|
version = "2.7.0"
|
|
|
|
[dependencies.strum]
|
|
version = "0.27"
|
|
features = ["derive"]
|
|
|
|
[dependencies.thiserror]
|
|
version = "2.0.18"
|
|
|
|
[dependencies.time]
|
|
version = "0.3"
|
|
features = [
|
|
"formatting",
|
|
"parsing",
|
|
"serde",
|
|
]
|
|
|
|
[dependencies.tokio]
|
|
version = "1.50.0"
|
|
features = ["full"]
|
|
|
|
[dependencies.unicode-normalization]
|
|
version = "0.1.24"
|
|
|
|
[dependencies.url]
|
|
version = "2.5"
|
|
|
|
[dev-dependencies.criterion]
|
|
version = "0.5"
|
|
features = ["async_tokio"]
|
|
|
|
[dev-dependencies.tokio]
|
|
version = "1.50.0"
|
|
features = ["test-util"]
|
|
|
|
[target."cfg(windows)".dependencies.windows-sys]
|
|
version = "0.61.2"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
]
|