-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (48 loc) · 2.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "dano"
version = "0.7.2"
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.release]
debug = true
opt-level = "z" # Aggressively optimize for size.
[dependencies]
primitive-types = { version = "0.12.1", default-features = false }
clap = { version = "3.2.8", features = ["cargo"] }
rayon = { version = "1.7.0", default-features = false }
which = { version = "4.4.0", default-features = false }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = { version = "1.0.96" } # need alloc or std
itertools = { version = "0.10.5" } # use_std, use_alloc for into_group_map_by()
crossbeam-channel = { version = "0.5.8", default-features = false }
num_cpus = { version = "1.15", default-features = false }
xattr = { version = "1.0.0", default-features = false }
[package.metadata.deb]
maintainer = "kimono koans <https://github.com/kimono-koans/>"
copyright = "2022, Robert Swinford <robert.swinford<...at...>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"],
]