diff options
author | 2023-01-24 02:14:50 +0100 | |
---|---|---|
committer | 2023-01-24 02:14:50 +0100 | |
commit | 2dea5fe058f825db1a03cfce1fa84efbcb46a906 (patch) | |
tree | 1991b0c69784d37671686776a0296f047ac16731 /examples/toast/Cargo.toml | |
parent | eb4fcba05fb54741289a28ec9b921c90c9acc7fd (diff) | |
parent | 01c484245be54c1aeb6605659fb0f222856c28da (diff) | |
download | iced-2dea5fe058f825db1a03cfce1fa84efbcb46a906.tar.gz iced-2dea5fe058f825db1a03cfce1fa84efbcb46a906.tar.bz2 iced-2dea5fe058f825db1a03cfce1fa84efbcb46a906.zip |
Merge pull request #1655 from tarkah/feat/group-overlay
Group Overlay
Diffstat (limited to 'examples/toast/Cargo.toml')
-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" } |