diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-10-24 19:32:26 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-10-24 19:32:26 +0200 |
| commit | 42568332b5433c97813e8c291db0fc0d15867b76 (patch) | |
| tree | 299ef0d2306b2c986bdbe0df39545a5a2b04f062 /tool/Cargo.toml | |
| parent | 2fc5931a6ce9bbb75757c4a20022b19778bd91c5 (diff) | |
| download | jellything-42568332b5433c97813e8c291db0fc0d15867b76.tar jellything-42568332b5433c97813e8c291db0fc0d15867b76.tar.bz2 jellything-42568332b5433c97813e8c291db0fc0d15867b76.tar.zst | |
import -> jellytool
Diffstat (limited to 'tool/Cargo.toml')
| -rw-r--r-- | tool/Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tool/Cargo.toml b/tool/Cargo.toml new file mode 100644 index 0000000..c9d46f1 --- /dev/null +++ b/tool/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "jellytool" +version = "0.1.0" +edition = "2021" + +[dependencies] +jellycommon = { path = "../common" } +jellymatroska = { path = "../matroska" } +jellyremuxer = { path = "../remuxer" } + +log = { workspace = true } +env_logger = "0.10.0" +anyhow = "1.0.75" +clap = { version = "4.4.6", features = ["derive"] } +reqwest = { version = "0.11.20", features = ["blocking", "json"] } + +serde = { version = "1.0.188", features = ["derive"] } +serde_json = "1.0.107" +serde_yaml = "0.9.25" +bincode = { version = "2.0.0-rc.3", features = ["serde"] } +base64 = "0.21.4" +rand = "0.8.5" |