mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
25 lines
656 B
Rust
25 lines
656 B
Rust
use futures::StreamExt;
|
|
use librespot_discovery::DeviceType;
|
|
use sha1::{Digest, Sha1};
|
|
use simple_logger::SimpleLogger;
|
|
|
|
#[tokio::main(flavor = "current_thread")]
|
|
async fn main() {
|
|
SimpleLogger::new()
|
|
.with_level(log::LevelFilter::Debug)
|
|
.init()
|
|
.unwrap();
|
|
|
|
let name = "Librespot".to_string();
|
|
let device_id = hex::encode(Sha1::digest(name.as_bytes()));
|
|
|
|
let mut server = librespot_discovery::Discovery::builder(device_id)
|
|
.name(name)
|
|
.device_type(DeviceType::Computer)
|
|
.launch()
|
|
.unwrap();
|
|
|
|
while let Some(x) = server.next().await {
|
|
println!("Received {:?}", x);
|
|
}
|
|
}
|