rustant-core 1.0.1

Core agent logic for Rustant - LLM interface, memory, safety, and orchestration
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 = "rustant-core"
version = "1.0.1"
authors = ["Dev Jadhav"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core agent logic for Rustant - LLM interface, memory, safety, and orchestration"
homepage = "https://github.com/DevJadhav/Rustant"
readme = false
keywords = [
    "agent",
    "llm",
    "ai",
    "automation",
    "privacy",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/DevJadhav/Rustant"
resolver = "2"

[features]
browser = ["dep:chromiumoxide"]
default = []
voice = [
    "dep:cpal",
    "dep:whisper-rs",
]

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

[[test]]
name = "agent_integration"
path = "tests/agent_integration.rs"

[[test]]
name = "browser_integration"
path = "tests/browser_integration.rs"

[[test]]
name = "e2e_channel_agent"
path = "tests/e2e_channel_agent.rs"

[[test]]
name = "gateway_rest_api"
path = "tests/gateway_rest_api.rs"

[[test]]
name = "integration_channels"
path = "tests/integration_channels.rs"

[[test]]
name = "load_tests"
path = "tests/load_tests.rs"

[[test]]
name = "proptest_core"
path = "tests/proptest_core.rs"

[[test]]
name = "security_audit"
path = "tests/security_audit.rs"

[[test]]
name = "voice_integration"
path = "tests/voice_integration.rs"

[[test]]
name = "voice_live_test"
path = "tests/voice_live_test.rs"

[[bench]]
name = "core_benchmarks"
path = "benches/core_benchmarks.rs"
harness = false

[dependencies.aes-gcm]
version = "0.10"

[dependencies.anyhow]
version = "1.0"

[dependencies.async-imap]
version = "0.11"
features = ["runtime-tokio"]
default-features = false

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
version = "0.8"
features = ["ws"]

[dependencies.axum-server]
version = "0.7"
features = ["tls-rustls"]

[dependencies.base64]
version = "0.22"

[dependencies.cap-std]
version = "3.4"

[dependencies.chromiumoxide]
version = "0.8"
optional = true

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.cpal]
version = "0.15"
optional = true

[dependencies.cron]
version = "0.13"

[dependencies.directories]
version = "5.0"

[dependencies.dotenvy]
version = "0.15"

[dependencies.figment]
version = "0.10"
features = [
    "toml",
    "env",
    "json",
]

[dependencies.futures]
version = "0.3"

[dependencies.hmac]
version = "0.12"

[dependencies.hound]
version = "3.5"

[dependencies.ignore]
version = "0.4"

[dependencies.keyring]
version = "3"
features = [
    "apple-native",
    "windows-native",
    "sync-secret-service",
]

[dependencies.lettre]
version = "0.11"
features = [
    "tokio1-rustls-tls",
    "builder",
    "hostname",
    "pool",
    "smtp-transport",
]
default-features = false

[dependencies.native-tls]
version = "0.2"

[dependencies.open]
version = "5"

[dependencies.openssl]
version = "0.10"
features = ["vendored"]

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.rand]
version = "0.8"

[dependencies.rcgen]
version = "0.13"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "stream",
    "multipart",
]

[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]

[dependencies.rustls]
version = "0.23"
features = ["aws_lc_rs"]

[dependencies.self_update]
version = "0.41"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.sha2]
version = "0.10"

[dependencies.tantivy]
version = "0.22"

[dependencies.thiserror]
version = "2.0"

[dependencies.tiktoken-rs]
version = "0.9"

[dependencies.tokio]
version = "1.47"
features = [
    "rt-multi-thread",
    "sync",
    "time",
    "macros",
    "net",
    "fs",
    "io-util",
    "io-std",
    "process",
    "signal",
]

[dependencies.tokio-native-tls]
version = "0.3"

[dependencies.tokio-stream]
version = "0.1"

[dependencies.tokio-util]
version = "0.7"
features = ["rt"]

[dependencies.toml]
version = "0.8"

[dependencies.tower]
version = "0.5"

[dependencies.tower-http]
version = "0.6"
features = [
    "cors",
    "trace",
    "fs",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-appender]
version = "0.2"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "json",
    "env-filter",
]

[dependencies.unicode-normalization]
version = "0.1"

[dependencies.url]
version = "2"

[dependencies.urlencoding]
version = "2"

[dependencies.uuid]
version = "1.0"
features = [
    "v4",
    "serde",
]

[dependencies.walkdir]
version = "2.5"

[dependencies.whisper-rs]
version = "0.14"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.pretty_assertions]
version = "1.4"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.tempfile]
version = "3.14"

[dev-dependencies.tokio-test]
version = "0.4"