Walks over all movie directories, pulls some metadata into a hashmap and then pretty prints it.
14 lines
372 B
TOML
14 lines
372 B
TOML
[package]
|
|
name = "superdeduper"
|
|
version = "0.1.0"
|
|
authors = ["Bill Thiede <git@xinu.tv>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
glob = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
human_format = { git ="https://github.com/wathiede/human-format-rs" }
|