mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-13 03:55:17 +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>
50 lines
1 KiB
TOML
50 lines
1 KiB
TOML
[workspace]
|
|
members = [
|
|
"lonelyradio_types",
|
|
"monoclient",
|
|
"monolib",
|
|
"monoloader",
|
|
"platform/gtk",
|
|
]
|
|
|
|
[package]
|
|
name = "lonelyradio"
|
|
description = "TCP radio for lonely ones"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Ivan Bushchik <ivabus@ivabus.dev>"]
|
|
repository = "https://github.com/ivabus/lonelyradio"
|
|
|
|
[dependencies]
|
|
rand = "0.8.5"
|
|
clap = { version = "4.4.18", features = ["derive"] }
|
|
tokio = { version = "1.35.1", features = [
|
|
"sync",
|
|
"fs",
|
|
"io-util",
|
|
"net",
|
|
"rt-multi-thread",
|
|
"rt",
|
|
"macros",
|
|
] }
|
|
walkdir = "2.4.0"
|
|
symphonia = { version = "0.5.4", features = [
|
|
"all-codecs",
|
|
"all-formats",
|
|
"opt-simd",
|
|
] }
|
|
chrono = "0.4"
|
|
rmp-serde = "1.1.2"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
lofty = "0.18.2"
|
|
async-stream = "0.3.5"
|
|
tokio-stream = { version = "0.1.15", features = ["sync"] }
|
|
futures-util = "0.3.30"
|
|
samplerate = "0.2.4"
|
|
lonelyradio_types = { path = "./lonelyradio_types" }
|
|
once_cell = "1.19.0"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|