[package]
name = "dano"
version = "0.9.0"
edition = "2021"
keywords = ["checksum", "verify", "media", "cli-utility", "storage"]
description = "A CLI tool for generating checksums of media bitstreams"
repository = "https://github.com/kimono-koans/dano"
readme = "README.md"
categories = ["command-line-utilities", "os"]
license = "MPL-2.0"
documentation = "https://github.com/kimono-koans/dano/blob/master/README.md"
[badges]
maintenance = { status = "actively-developed" }
[profile.deb]
lto = true
opt-level = "z"
codegen-units = 1
panic = "abort"
inherits = "release"
[dependencies]
primitive-types = { version = "0.12.2", default-features = false }
clap = { version = "3.2.8", features = ["cargo"] }
rayon = { version = "1.10.0", default-features = false }
which = { version = "6.0.1", default-features = false }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0.116" } # need alloc or std
itertools = { version = "0.12.1" } # use_std, use_alloc for into_group_map_by()
crossbeam-channel = { version = "0.5.12", default-features = false, features = [
"std",
] }
num_cpus = { version = "1.16.0", default-features = false }
xattr = { version = "1.3.1", default-features = false }
[package.metadata.deb]
maintainer = "kimono koans "
copyright = "2022, Robert Swinford gmail.com>"
extended-description = """\
dano is a wrapper for ffmpeg that checksums the internal file streams of ffmpeg compatible media files, \
and stores them in a format which can be used to verify such checksums later. \
This is handy, because, should you choose to change metadata tags, or change file names, \
the media checksums should remain the same.
"""
license-file = ["LICENSE", "4"]
depends = "ffmpeg (>=4.2.7), $auto"
suggests = "flac (>=1.3.3)"
section = "utility"
priority = "optional"
assets = [
[
"target/release/dano",
"usr/bin/dano",
"755",
],
[
"dano.1",
"usr/share/man/man1/dano.1",
"644",
],
[
"README.md",
"usr/share/doc/dano/README",
"644",
],
[
"LICENSE",
"usr/share/doc/dano/LICENSE",
"644",
],
[
"third_party/LICENSES_THIRD_PARTY.html",
"usr/share/doc/dano/LICENSES_THIRD_PARTY.html",
"644",
],
]