diff options
author | 2023-01-17 17:10:58 -0800 | |
---|---|---|
committer | 2023-01-17 17:10:58 -0800 | |
commit | d470467718ecad0f37599a811bef846846dbb2b9 (patch) | |
tree | a09d0be44035743863b14b7a4d7303d1bdaccd43 /examples/toast/Cargo.toml | |
parent | 3ab679725526bd095cc1a160705312b16c408b92 (diff) | |
download | iced-d470467718ecad0f37599a811bef846846dbb2b9.tar.gz iced-d470467718ecad0f37599a811bef846846dbb2b9.tar.bz2 iced-d470467718ecad0f37599a811bef846846dbb2b9.zip |
Add toast example
Diffstat (limited to '')
-rw-r--r-- | examples/toast/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/toast/Cargo.toml b/examples/toast/Cargo.toml new file mode 100644 index 00000000..f1f986aa --- /dev/null +++ b/examples/toast/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "toast" +version = "0.1.0" +authors = ["tarkah <admin@tarkah.dev>"] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../..", features = [] } +iced_native = { path = "../../native" } |