diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-12-22 09:02:46 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-12-22 09:02:46 +0100 |
| commit | b92983fb0cab2a284301b930d2b15ec0109dd93e (patch) | |
| tree | f7fb1b900b3fa5ced46de392a47756c3ca5cc398 /import/Cargo.toml | |
| parent | 9a52852f736692e5319da49478e16bfba30fbd39 (diff) | |
| parent | 826c61c9612e855b19c3adb0e93d80bbfb4dc903 (diff) | |
| download | jellything-b92983fb0cab2a284301b930d2b15ec0109dd93e.tar jellything-b92983fb0cab2a284301b930d2b15ec0109dd93e.tar.bz2 jellything-b92983fb0cab2a284301b930d2b15ec0109dd93e.tar.zst | |
Merge branch 'master' of codeberg.org:metamuffin/jellything
Diffstat (limited to 'import/Cargo.toml')
| -rw-r--r-- | import/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/import/Cargo.toml b/import/Cargo.toml new file mode 100644 index 0000000..a54967c --- /dev/null +++ b/import/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "jellyimport" +version = "0.1.0" +edition = "2021" + +[dependencies] +jellycommon = { path = "../common" } +jellybase = { path = "../base" } +jellyclient = { path = "../client" } +jellymatroska = { path = "../matroska" } +jellyremuxer = { path = "../remuxer" } + +log = { workspace = true } +anyhow = "1.0.75" +reqwest = { version = "0.11.22", features = ["blocking", "json"] } + +serde = { version = "1.0.193", features = ["derive"] } +serde_json = "1.0.108" +serde_yaml = "0.9.27" +# bincode = { version = "2.0.0-rc.3", features = ["serde"] } + +async-recursion = "1.0.5" +futures = "0.3.29" +tokio = { workspace = true } |