bubblepop 0.1.0

A speech bubble extractor for comics and manga in Rust
# 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 = "bubblepop"
version = "0.1.0"
authors = ["letmutex"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A speech bubble extractor for comics and manga in Rust"
homepage = "https://github.com/letmutex/bubble-pop"
readme = "README.md"
keywords = [
    "speech-bubble",
    "segmentation",
    "computer-vision",
]
categories = [
    "computer-vision",
    "multimedia::images",
]
license = "Apache-2.0"
repository = "https://github.com/letmutex/bubble-pop"

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

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

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

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

[dependencies.image]
version = "0.25"
features = [
    "png",
    "jpeg",
    "webp",
]
default-features = false

[dependencies.libloading]
version = "0.8"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.5"
features = [
    "html_reports",
    "cargo_bench_support",
]
default-features = false

[build-dependencies.ureq]
version = "2.10"
features = ["tls"]
default-features = false