mcv-rs 0.1.0

MCV computer-vision 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 = "2021"
name = "mcv-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCV computer-vision primitives"
documentation = "https://docs.rs/mcv-rs"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/NakanoSanku/insider-rust"

[features]
default = []
full = [
    "template-matching",
    "multi-color",
    "ocr",
]
image-crate = ["dep:image"]
multi-color = [
    "opencv",
    "opencv-io",
]
ocr = [
    "dep:ocr-rs",
    "dep:regex",
    "image-crate",
    "dep:libloading",
]
opencv = ["dep:opencv"]
opencv-io = ["opencv"]
template-matching = [
    "opencv",
    "opencv-io",
]

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

[dependencies.image]
version = "0.25.10"
features = ["png"]
optional = true
default-features = false

[dependencies.ocr-rs]
version = "2.3.2"
features = ["mnn-dynamic"]
optional = true

[dependencies.opencv]
version = "0.99.0"
features = [
    "clang-runtime",
    "imgcodecs",
    "imgproc",
]
optional = true
default-features = false

[dependencies.regex]
version = "1.12.4"
optional = true

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

[dependencies.thiserror]
version = "2.0.18"

[target."cfg(windows)".dependencies.libloading]
version = "0.9.0"
optional = true