diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-11 18:14:24 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-11 18:14:24 +0100 |
commit | 0737008c5c649f0ce33719fb9126b284d76c9807 (patch) | |
tree | 55f3bfe31079269cdec2c00b7be0c29c62c792dd /Cargo.lock | |
parent | 948700d35f0eddbc2e0fd29548991e687362983d (diff) | |
download | jellything-0737008c5c649f0ce33719fb9126b284d76c9807.tar jellything-0737008c5c649f0ce33719fb9126b284d76c9807.tar.bz2 jellything-0737008c5c649f0ce33719fb9126b284d76c9807.tar.zst |
modularize!
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 90 |
1 files changed, 90 insertions, 0 deletions
@@ -313,6 +313,35 @@ dependencies = [ ] [[package]] +name = "ebml-iterable" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b31d12a9ba3afb88aeef98a2d2547d26d0668b5a53f1f0452fc950a05873c078" +dependencies = [ + "ebml-iterable-specification", + "ebml-iterable-specification-derive", + "futures", +] + +[[package]] +name = "ebml-iterable-specification" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a991c9097272fc3be18a90f467da4d8148e65a9f83f4c61eddc60a6924ce1fc4" + +[[package]] +name = "ebml-iterable-specification-derive" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bc71e6e4c22b398a106956e6b29839a6e9b5e9d0a902f98e90d2c59855316ed" +dependencies = [ + "ebml-iterable-specification", + "proc-macro2", + "quote", + "syn", +] + +[[package]] name = "either" version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -414,6 +443,7 @@ checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" dependencies = [ "futures-channel", "futures-core", + "futures-executor", "futures-io", "futures-sink", "futures-task", @@ -437,12 +467,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" [[package]] +name = "futures-executor" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] name = "futures-io" version = "0.3.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" [[package]] +name = "futures-macro" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] name = "futures-sink" version = "0.3.25" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -463,6 +515,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-io", + "futures-macro", "futures-sink", "futures-task", "memchr", @@ -719,12 +772,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" [[package]] +name = "jellycommon" +version = "0.1.0" +dependencies = [ + "serde", +] + +[[package]] +name = "jellyremuxer" +version = "0.1.0" +dependencies = [ + "anyhow", + "jellycommon", + "log", + "webm-iterable", +] + +[[package]] name = "jellything" version = "0.1.0" dependencies = [ "anyhow", "chashmap", "env_logger", + "jellycommon", "log", "markup", "rocket", @@ -736,6 +807,16 @@ dependencies = [ ] [[package]] +name = "jellytools" +version = "0.1.0" +dependencies = [ + "anyhow", + "jellycommon", + "log", + "webm-iterable", +] + +[[package]] name = "lazy_static" version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1816,6 +1897,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] +name = "webm-iterable" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d7896d663d20a8ca015e3ace5dc58d38b2b9924cc34affa6c75be031f3bbf07" +dependencies = [ + "ebml-iterable", +] + +[[package]] name = "winapi" version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" |