0.1.5: fix typos

Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
This commit is contained in:
Ivan Bushchik 2024-01-29 12:02:39 +03:00
parent 4f63fcd5d2
commit 6b5d73d341
No known key found for this signature in database
GPG key ID: 2F16FBF3262E090C
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -320,7 +320,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
[[package]] [[package]]
name = "lonelyradio" name = "lonelyradio"
version = "0.1.4" version = "0.1.5"
dependencies = [ dependencies = [
"chrono", "chrono",
"clap", "clap",

View file

@ -1,7 +1,7 @@
[package] [package]
name = "lonelyradio" name = "lonelyradio"
description = "TCP radio for singles" description = "TCP radio for singles"
version = "0.1.4" version = "0.1.5"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
authors = [ "Ivan Bushchik <ivabus@ivabus.dev>" ] authors = [ "Ivan Bushchik <ivabus@ivabus.dev>" ]

View file

@ -72,7 +72,7 @@ async fn stream(mut s: TcpStream) {
if args.public_log { if args.public_log {
eprintln!( eprintln!(
"[{}] {} to {}\nc", "[{}] {} to {}",
Local::now().to_rfc3339(), Local::now().to_rfc3339(),
track.to_str().unwrap(), track.to_str().unwrap(),
s.peer_addr().unwrap().port() s.peer_addr().unwrap().port()