feat(config): Add config loading/saving
Also adding a first time run wizard, which creates the config if it does not exist yet.
This commit is contained in:
commit
b7a47519b5
5 changed files with 1000 additions and 0 deletions
14
Cargo.toml
Normal file
14
Cargo.toml
Normal file
|
@ -0,0 +1,14 @@
|
|||
[package]
|
||||
name = "plex-media-ingest"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.4.7", features = ["derive"] }
|
||||
inquire = "0.6.2"
|
||||
log = "0.4.20"
|
||||
serde = { version = "1.0.190", features = ["derive"] }
|
||||
serde_json = "1.0.108"
|
||||
stderrlog = "0.5.4"
|
Loading…
Add table
Add a link
Reference in a new issue