-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (72 loc) · 2.24 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "dano"
version = "0.9.1"
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]
clap = { version = "3.2.25", features = ["cargo"] }
rayon = { version = "1.10.0", default-features = false }
which = { version = "7.0.1", default-features = false }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.134" } # need alloc or std
itertools = { version = "0.14.0" } # use_std, use_alloc for into_group_map_by()
crossbeam-channel = { version = "0.5.14", 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 <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",
],
]