doc-quad 0.1.0

A high-performance document detection library in pure Rust.
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 = "doc-quad"
version = "0.1.0"
authors = ["Paul Zhang"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance document detection library in pure Rust."
homepage = "https://github.com/paulzhang5511/doc-quad"
documentation = "https://docs.rs/doc-quad"
readme = "README.md"
keywords = [
    "document",
    "detection",
    "edge-detection",
    "quadrilateral",
    "computer-vision",
]
categories = ["graphics"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/paulzhang5511/doc-quad"

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

[[example]]
name = "detect_image"
path = "examples/detect_image.rs"

[[example]]
name = "pc_demo"
path = "examples/pc_demo.rs"

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

[[bench]]
name = "canny_bench"
path = "benches/canny_bench.rs"

[dependencies.bytemuck]
version = "1.14"
features = ["derive"]

[dependencies.fast-canny]
version = "0.1"

[dependencies.geo]
version = "0.27"

[dependencies.geo-types]
version = "0.7"

[dependencies.glam]
version = "0.24"

[dependencies.log]
version = "0.4"

[dependencies.ndarray]
version = "0.15"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.image]
version = "0.25"