diff options
author | 2022-04-25 14:45:38 +0700 | |
---|---|---|
committer | 2022-04-25 14:45:38 +0700 | |
commit | bba4cf323b711fe9a962c84d1a14875a0e394396 (patch) | |
tree | 907ecff27b386d755887f62b9ac00700c541ca7e /examples/pure/tooltip/Cargo.toml | |
parent | a33e320521fa0f08704bcea541ca337d0f45449e (diff) | |
parent | e33f43af31888b8b0795c2287aed9f26b4e1d699 (diff) | |
download | iced-bba4cf323b711fe9a962c84d1a14875a0e394396.tar.gz iced-bba4cf323b711fe9a962c84d1a14875a0e394396.tar.bz2 iced-bba4cf323b711fe9a962c84d1a14875a0e394396.zip |
Merge pull request #1315 from casperstorm/pure/tooltip
Implemented Tooltip as Pure
Diffstat (limited to '')
-rw-r--r-- | examples/pure/tooltip/Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/pure/tooltip/Cargo.toml b/examples/pure/tooltip/Cargo.toml new file mode 100644 index 00000000..d84dfb37 --- /dev/null +++ b/examples/pure/tooltip/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "pure_tooltip" +version = "0.1.0" +authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>", "Casper Rogild Storm"] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../../..", features = ["pure"] } |