npcrs 0.1.15

Rust core for the NPC system — agent kernel, jinx executor, LLM client
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 = "npcrs"
version = "0.1.15"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust core for the NPC system — agent kernel, jinx executor, LLM client"
homepage = "https://github.com/NPC-Worldwide/npcrs"
readme = "README.md"
keywords = [
    "npc",
    "ai",
    "agent",
    "llm",
    "shell",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/NPC-Worldwide/npcrs"

[features]
default = [
    "ffi",
    "llamacpp",
]
ffi = []
llamacpp = ["llama-cpp-2"]
python = []

[lib]
name = "npcrs"
crate-type = [
    "lib",
    "cdylib",
    "staticlib",
]
path = "src/lib.rs"

[[bin]]
name = "npcrs"
path = "src/main.rs"

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

[dependencies.anyhow]
version = "1"

[dependencies.async-recursion]
version = "1"

[dependencies.axum]
version = "0.8"

[dependencies.base64]
version = "0.22"

[dependencies.calamine]
version = "0.26"

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

[dependencies.dirs]
version = "6"

[dependencies.dotenvy]
version = "0.15.7"

[dependencies.eventsource-stream]
version = "0.2"

[dependencies.futures]
version = "0.3"

[dependencies.genai]
version = "0.5"

[dependencies.glob]
version = "0.3"

[dependencies.llama-cpp-2]
version = "0.1"
optional = true

[dependencies.once_cell]
version = "1"

[dependencies.petgraph]
version = "0.7"

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

[dependencies.regex]
version = "1"

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

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

[dependencies.rustyline]
version = "17.0.2"

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

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.shellexpand]
version = "3"

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio",
    "sqlite",
    "postgres",
    "mysql",
    "chrono",
    "uuid",
]

[dependencies.tera]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

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

[dependencies.tower]
version = "0.5"

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

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]

[dependencies.urlencoding]
version = "2"

[dependencies.uuid]
version = "1"
features = ["v4"]

[dependencies.walkdir]
version = "2"

[dependencies.zip]
version = "2"

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