summaryrefslogtreecommitdiffstats
path: root/examples/combo_box/Cargo.toml
diff options
context:
space:
mode:
authorLibravatar Joao Freitas <51237625+jhff@users.noreply.github.com>2023-07-13 13:51:29 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-07-26 21:59:42 +0200
commitdd5ef8b90895f626d4b8f0466c4457c5abf451a0 (patch)
tree0f43f2b86ee38460e33612e928e1c8343863a9dd /examples/combo_box/Cargo.toml
parent4cf1b4fd1c8f45fe50ff254decd91f0d589f70ff (diff)
downloadiced-dd5ef8b90895f626d4b8f0466c4457c5abf451a0.tar.gz
iced-dd5ef8b90895f626d4b8f0466c4457c5abf451a0.tar.bz2
iced-dd5ef8b90895f626d4b8f0466c4457c5abf451a0.zip
Add ComboBox widget
- Widget implementation - Widget helper - Example
Diffstat (limited to 'examples/combo_box/Cargo.toml')
-rw-r--r--examples/combo_box/Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/combo_box/Cargo.toml b/examples/combo_box/Cargo.toml
new file mode 100644
index 00000000..be1b5e32
--- /dev/null
+++ b/examples/combo_box/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "combo_box"
+version = "0.1.0"
+authors = ["Joao Freitas <jhff.15@gmail.com>"]
+edition = "2021"
+publish = false
+
+[dependencies]
+iced = { path = "../..", features = ["debug"] }