diff options
author | metamuffin <metamuffin@disroot.org> | 2023-08-03 20:45:31 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-08-03 20:45:31 +0200 |
commit | d52233a7a304b7dadda383128eaa42aea02b3b74 (patch) | |
tree | 254ab9e7ca527b16afaa6fa1a7ad76fef220f9f6 /import/Cargo.toml | |
parent | 5b71ccaf2bbe34f1d39d4f38f2b5c2090a9761b1 (diff) | |
download | jellything-d52233a7a304b7dadda383128eaa42aea02b3b74.tar jellything-d52233a7a304b7dadda383128eaa42aea02b3b74.tar.bz2 jellything-d52233a7a304b7dadda383128eaa42aea02b3b74.tar.zst |
rename tools crate
Diffstat (limited to 'import/Cargo.toml')
-rw-r--r-- | import/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/import/Cargo.toml b/import/Cargo.toml new file mode 100644 index 0000000..4e351c6 --- /dev/null +++ b/import/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "jellything-import" +version = "0.1.0" +edition = "2021" + +[dependencies] +jellycommon = { path = "../common" } +jellymatroska = { path = "../matroska" } +jellyremuxer = { path = "../remuxer" } + +log = "0.4.19" +env_logger = "0.10.0" +anyhow = "1.0.72" +clap = { version = "4.3.19", features = ["derive"] } +reqwest = { version = "0.11.18", features = ["blocking", "json"] } + +serde = { version = "1.0.180", features = ["derive"] } +serde_json = "1.0.104" +bincode = { version = "2.0.0-rc.3", features = ["serde"] } |