diff options
Diffstat (limited to 'stream/Cargo.toml')
-rw-r--r-- | stream/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/stream/Cargo.toml b/stream/Cargo.toml new file mode 100644 index 0000000..804bc1c --- /dev/null +++ b/stream/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "jellystream" +version = "0.1.0" +edition = "2021" + +[dependencies] +jellycommon = { path = "../common", features = ["rocket"] } +jellybase = { path = "../base" } +jellytranscoder = { path = "../transcoder" } + +log = { workspace = true } +anyhow = { workspace = true } +tokio = { version = "1.32.0", features = ["io-util"] } +tokio-util = { version = "0.7.9", features = ["io", "io-util"] } |