summaryrefslogtreecommitdiffstats
path: root/examples/radio
diff options
context:
space:
mode:
Diffstat (limited to 'examples/radio')
-rw-r--r--examples/radio/Cargo.toml10
-rw-r--r--examples/radio/src/main.rs3
2 files changed, 13 insertions, 0 deletions
diff --git a/examples/radio/Cargo.toml b/examples/radio/Cargo.toml
new file mode 100644
index 00000000..a8c7f351
--- /dev/null
+++ b/examples/radio/Cargo.toml
@@ -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 = "../.." }
diff --git a/examples/radio/src/main.rs b/examples/radio/src/main.rs
new file mode 100644
index 00000000..e7a11a96
--- /dev/null
+++ b/examples/radio/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}