summaryrefslogtreecommitdiffstats
path: root/examples/integration/Cargo.toml
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-02-09 05:32:56 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-02-09 05:32:56 +0100
commit4d7979aa77e481a5f8ff2f22bc2665912617fc04 (patch)
tree767519bfaf64a8abf3b091d3ff7d66cc44c4d4ad /examples/integration/Cargo.toml
parenta244f9324305a2393da95be76085cba6a29b4b27 (diff)
downloadiced-4d7979aa77e481a5f8ff2f22bc2665912617fc04.tar.gz
iced-4d7979aa77e481a5f8ff2f22bc2665912617fc04.tar.bz2
iced-4d7979aa77e481a5f8ff2f22bc2665912617fc04.zip
Add `integration` example
It showcases how to integrate iced in an existing graphical application.
Diffstat (limited to '')
-rw-r--r--examples/integration/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/integration/Cargo.toml b/examples/integration/Cargo.toml
new file mode 100644
index 00000000..afc2c791
--- /dev/null
+++ b/examples/integration/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "integration"
+version = "0.1.0"
+authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
+edition = "2018"
+publish = false
+
+[dependencies]
+iced_winit = { path = "../../winit" }
+iced_wgpu = { path = "../../wgpu" }
+env_logger = "0.7"