summaryrefslogtreecommitdiffstats
path: root/examples/combo_box/Cargo.toml
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-07-26 22:45:56 +0200
committerLibravatar GitHub <noreply@github.com>2023-07-26 22:45:56 +0200
commita0a3cf7eb71ca9a934a60144b92c555cf7efe69a (patch)
tree3657e6311e60e3fdbf530f1117be7e42d2cf6b16 /examples/combo_box/Cargo.toml
parent4cf1b4fd1c8f45fe50ff254decd91f0d589f70ff (diff)
parent559ebdbb3a0b90ff28f361f5466f17178b6d8137 (diff)
downloadiced-a0a3cf7eb71ca9a934a60144b92c555cf7efe69a.tar.gz
iced-a0a3cf7eb71ca9a934a60144b92c555cf7efe69a.tar.bz2
iced-a0a3cf7eb71ca9a934a60144b92c555cf7efe69a.zip
Merge pull request #1954 from jhff/widget/combobox
Add `ComboBox` widget
Diffstat (limited to '')
-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"] }