embystream 0.0.36

Another Emby streaming application (frontend/backend separation) written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod backend;
pub mod error;
pub mod frontend;
pub mod redirect_info;
pub mod request;
pub mod sign;
pub mod sign_decryptor;
pub mod sign_encryptor;

pub use backend::{
    service::{AppStreamService, StreamService},
    stream::StreamMiddleware,
    stream_relay::StreamRelayMiddleware,
};

pub use sign::{Sign, SignParams};
pub use sign_decryptor::SignDecryptor;
pub use sign_encryptor::SignEncryptor;