From 6df2d88b14a13f6083490977db0d6a593ba1e841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com> Date: Fri, 22 Mar 2024 03:07:06 +0300 Subject: [PATCH] feat: :tada: streamer initial commit --- streamer/Cargo.toml | 10 ++++++++++ streamer/src/main.rs | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 streamer/Cargo.toml create mode 100644 streamer/src/main.rs diff --git a/streamer/Cargo.toml b/streamer/Cargo.toml new file mode 100644 index 0000000..d06bad4 --- /dev/null +++ b/streamer/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "streamer" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +cpal = "0.15.3" +tokio = { version = "1.36.0", features = ["full"] } diff --git a/streamer/src/main.rs b/streamer/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/streamer/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}