airust 0.1.7

Trainable, modular AI engine in Rust with compile-time knowledge
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 = "2021"
name = "airust"
version = "0.1.7"
authors = ["LEVOGNE"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "airust"
description = "Trainable, modular AI engine in Rust with compile-time knowledge"
homepage = "https://github.com/LEVOGNE/airust"
documentation = "https://docs.rs/airust"
readme = "README.md"
keywords = [
    "ai",
    "machine-learning",
    "knowledge",
    "compile-time",
]
categories = [
    "science",
    "development-tools::testing",
]
license = "MIT"
repository = "https://github.com/LEVOGNE/airust"

[features]
async = ["dep:tokio"]
bots = [
    "dep:reqwest",
    "dep:scraper",
    "dep:sha2",
    "dep:url",
]
colors = ["dep:colored"]
default = [
    "colors",
    "web",
]
plotting = [
    "dep:plotly",
    "dep:plotters",
]
web = [
    "dep:axum",
    "dep:tower-http",
    "dep:tokio",
    "dep:rusqlite",
    "bots",
]

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

[[bin]]
name = "airust"
path = "src/bin/airust.rs"

[[bin]]
name = "merge_kb"
path = "src/bin/merge_kb.rs"

[[bin]]
name = "pdf2kb"
path = "src/bin/pdf2kb.rs"

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

[dependencies.axum]
version = "0.7"
features = [
    "multipart",
    "ws",
]
optional = true

[dependencies.chrono]
version = "0.4"

[dependencies.colored]
version = "2.0"
optional = true

[dependencies.indexmap]
version = "1.9.1"

[dependencies.once_cell]
version = "1.18"

[dependencies.pdf_oxide]
version = "0.3"

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

[dependencies.plotters]
version = "0.3"
optional = true

[dependencies.regex]
version = "1.5"

[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
optional = true

[dependencies.scraper]
version = "0.21"
optional = true

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.strsim]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.0"
features = ["full"]
optional = true

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

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

[dependencies.url]
version = "2"
optional = true

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

[build-dependencies.serde_json]
version = "1.0"