menta 0.0.5

Minimal Rust library for non-UI LLM and AI primitives
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 = "2024"
name = "menta"
version = "0.0.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal Rust library for non-UI LLM and AI primitives"
homepage = "https://github.com/KABBOUCHI/menta"
documentation = "https://docs.rs/menta"
readme = "README.md"
keywords = [
    "llm",
    "ai",
    "openai",
    "tools",
    "embeddings",
]
categories = [
    "api-bindings",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/KABBOUCHI/menta"
resolver = "2"

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

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

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

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

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

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

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

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

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

[dependencies.async-stream]
version = "0.3"

[dependencies.futures-util]
version = "0.3"

[dependencies.inventory]
version = "0.3"

[dependencies.menta_derive]
version = "0.0.5"
package = "menta_derive"

[dependencies.reqwest]
version = "0.12"
features = [
    "blocking",
    "json",
    "rustls-tls",
    "stream",
]
default-features = false

[dependencies.schemars]
version = "0.8"

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

[dependencies.serde_json]
version = "1"

[dependencies.urlencoding]
version = "2"

[dev-dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false

[dev-dependencies.glob]
version = "0.3"

[dev-dependencies.regex]
version = "1"

[dev-dependencies.rustyline]
version = "14"

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

[dev-dependencies.walkdir]
version = "2"