[package]
edition = "2024"
name = "clip2preview"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust crate for extracting embedded preview images from .clip files."
homepage = "https://github.com/tgim4253/clip2preview"
documentation = "https://docs.rs/clip2preview"
readme = "README.md"
keywords = [
"clip",
"preview",
"thumbnail",
"sqlite",
]
categories = [
"multimedia::images",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tgim4253/clip2preview"
[lib]
name = "clip2preview"
path = "src/lib.rs"
[[bin]]
name = "clip2preview"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.rusqlite]
version = "0.39.0"
features = [
"bundled",
"serialize",
]
[dev-dependencies.tempfile]
version = "3.27.0"