This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (49 loc) · 1.48 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
[package]
name = "pbskids-dl"
version = "3.3.0"
authors = ["pbskids-dl team"]
description = "A downloader for PBS KIDS videos."
license = "Apache-2.0"
documentation = "https://github.com/pbskids-dl/pbskids-dl.rs/tree/dev/docs"
readme = "README.md"
repository = "https://github.com/pbskids-dl/pbskids-dl.rs"
edition = "2021"
[[bin]]
name = "pbskids-dl-gui"
path = "src/pbskids-dl-gui.rs"
[[bin]]
name = "pbskids-dl"
path = "src/pbskids-dl.rs"
[dependencies]
clap = { version = "4.5.9", features = ["cargo"] }
serde_json = "1.0.120"
isahc = "1.7.2"
indicatif = "0.17.8"
serde ={version = "1.0.204", features = ["derive"]}
fltk ={ version = "1.4.33", features = ["fltk-bundled"]}
cargo-deb = "2.5.1"
[build-dependencies]
fl2rust = "0.5.19"
[profile.release]
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
[package.metadata.deb]
name = "pbskids-dl.rs"
maintainer = "NexusSfan <nexussfan@duck.com>"
copyright = "2024, pbskids-dl team"
license-file = ["LICENSE", "6"]
depends = "$auto"
section = "tools"
priority = "optional"
conflicts = "pbskids-dl"
assets = [
["target/release/pbskids-dl", "usr/bin/", "755"],
["target/release/pbskids-dl-gui", "usr/bin/", "755"],
["target/release/pbskids-dl", "usr/bin/pbskids-dl.rs", "755"],
["assets/config.json", "etc/pbskids-dl.rs/", "644"],
["assets/pbskids-dl-gui.desktop", "usr/share/applications/", "644"],
["assets/pbskids-dl-gui.svg", "usr/share/pixmaps/", "644"],
]
extended-description = """\
Rust version of pbskids-dl"""