diff options
author | 2023-07-27 01:02:47 +0200 | |
---|---|---|
committer | 2023-07-27 01:04:22 +0200 | |
commit | 09f2887da582ed7d39a56b2c0b37d0b24b6c1e57 (patch) | |
tree | 1a15edd4b43d49bc1152aee7f26ea0ec9a3e1701 /examples/visible_bounds/Cargo.toml | |
parent | e2ba7ece83f141c149659747977147392df008f4 (diff) | |
download | iced-09f2887da582ed7d39a56b2c0b37d0b24b6c1e57.tar.gz iced-09f2887da582ed7d39a56b2c0b37d0b24b6c1e57.tar.bz2 iced-09f2887da582ed7d39a56b2c0b37d0b24b6c1e57.zip |
Create `visible_bounds` example
Diffstat (limited to 'examples/visible_bounds/Cargo.toml')
-rw-r--r-- | examples/visible_bounds/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/visible_bounds/Cargo.toml b/examples/visible_bounds/Cargo.toml new file mode 100644 index 00000000..cfa56dd2 --- /dev/null +++ b/examples/visible_bounds/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "visible_bounds" +version = "0.1.0" +authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../..", features = ["debug"] } +once_cell = "1" |