diff options
author | 2023-03-14 14:34:32 -0600 | |
---|---|---|
committer | 2023-03-14 14:34:32 -0600 | |
commit | 257264de1c41435328ef685b8b66a71c7666764f (patch) | |
tree | b6dabf53c72553d438d2d5d41c0102b252d3f360 /examples/radio | |
parent | d7fffaa801423ae989fa7693f5b1cb424194e1ff (diff) | |
download | iced-257264de1c41435328ef685b8b66a71c7666764f.tar.gz iced-257264de1c41435328ef685b8b66a71c7666764f.tar.bz2 iced-257264de1c41435328ef685b8b66a71c7666764f.zip |
Working on Radio example
Diffstat (limited to 'examples/radio')
-rw-r--r-- | examples/radio/Cargo.toml | 10 | ||||
-rw-r--r-- | examples/radio/src/main.rs | 3 |
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!"); +} |