agentic-vision 0.3.0

Core vision library for AgenticVision — image capture, embedding, similarity, and visual memory
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 = "agentic-vision"
version = "0.3.0"
authors = ["Agentra Labs <contact@agentralabs.tech>"]
build = false
exclude = [".DS_Store"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core vision library for AgenticVision — image capture, embedding, similarity, and visual memory"
homepage = "https://agentralabs.tech"
readme = "README.md"
keywords = [
    "vision",
    "embedding",
    "clip",
    "image",
    "ai",
]
categories = [
    "multimedia::images",
    "science",
]
license = "MIT"
repository = "https://github.com/agentralabs/agentic-vision"

[features]
cli = [
    "dep:clap",
    "dep:clap_complete",
    "dep:rustyline",
    "dep:chrono",
]
default = ["cli"]

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

[[bin]]
name = "avis"
path = "src/bin/avis.rs"
required-features = ["cli"]

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

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

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"
optional = true

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.clap_complete]
version = "4"
optional = true

[dependencies.image]
version = "0.25"

[dependencies.memmap2]
version = "0.9"

[dependencies.ndarray]
version = "0.17"

[dependencies.ort]
version = "2.0.0-rc.11"
features = ["ndarray"]

[dependencies.rustyline]
version = "14"
optional = true

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tracing]
version = "0.1"

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

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