mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-22 08:05:10 +03:00
Ivan Bushchik
39cc35e16d
- Optional XOR encryption is now available in lonelyradio and monolib - lonelyradio was optimized to use less TCP calls and less memory copies - New program: monoloader - music downloader for lonelyradio - New monolib function - get_track() for downloading track (as samples), not playing - lonelyradio and monolib are using extensible Writer and Reader enums to provide ability to use lonelyradio with different transport protocols or encryption - Add lonelyradio_types crate to share types Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
18 lines
496 B
TOML
18 lines
496 B
TOML
[package]
|
|
name = "monolib"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "A library implementing the lonely radio audio streaming protocol"
|
|
repository = "https://github.com/ivabus/lonelyradio"
|
|
authors = ["Ivan Bushchik <ivabus@ivabus.dev>"]
|
|
|
|
[lib]
|
|
name = "monolib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
rodio = { version = "0.17.3", default-features = false }
|
|
byteorder = "1.5.0"
|
|
rmp-serde = "1.1.2"
|
|
lonelyradio_types = { path = "../lonelyradio_types" }
|