mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-10 02:25:17 +03:00
39 lines
784 B
TOML
39 lines
784 B
TOML
[workspace]
|
|
members = [ "monoclient", "monolib"]
|
|
|
|
[package]
|
|
name = "lonelyradio"
|
|
description = "TCP radio for lonely ones"
|
|
version = "0.2.1"
|
|
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 = [
|
|
"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",
|
|
] }
|
|
#samplerate = "0.2.4"
|
|
chrono = "0.4"
|
|
rmp-serde = "1.1.2"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
lofty = "0.18.2"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
#lto = true
|