mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-10 02:25:17 +03:00
19 lines
498 B
TOML
19 lines
498 B
TOML
[package]
|
|
name = "monolib"
|
|
version = "0.2.1"
|
|
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"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|