-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (36 loc) · 862 Bytes
/
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
[package]
name = "combine_videos"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mp4 = "0.14.0"
mp4-merge = "0.1.8"
scraper = "0.19.0"
rayon = "1.10.0"
indicatif = "0.17.8"
rand = "0.8.5"
[[bin]]
name = "make_folders"
path = "./src/bin/scrape_offline_to_make_folders.rs"
[[bin]]
name = "create_playlist"
path = "./src/bin/create_playlist.rs"
[[bin]]
name = "arrange_videos"
path = "./src/bin/arrange.rs"
[[bin]]
name = "combine_step"
path = "./src/bin/combine_step.rs"
[[bin]]
name = "combine_all"
path = "./src/bin/combine_all.rs"
[[bin]]
name = "combine_random"
path = "./src/bin/combine_random.rs"
[[bin]]
name = "rand_all"
path = "./src/bin/combine_rand_all.rs"
[[bin]]
name = "rand_all_improv"
path = "./src/bin/combine_rand_all_improv.rs"