Working on Radio example

This commit is contained in:
Aaron Honeycutt 2023-03-14 14:34:32 -06:00
parent d7fffaa801
commit 257264de1c
2 changed files with 13 additions and 0 deletions

10
examples/radio/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "radio"
version = "0.1.0"
authors = ["Aaron Honeycutt <aaronhoneycutt@proton.me>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
iced = { path = "../.." }

View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}