diff options
author | 2023-11-14 20:59:49 +0100 | |
---|---|---|
committer | 2023-11-14 20:59:49 +0100 | |
commit | b474a2b7a763dcde6a377cb409001a7b5285ee8d (patch) | |
tree | 6e751607bb103e7011807a45797923d86214d88d /examples/custom_shader/Cargo.toml | |
parent | 817f72868746461891ca4e74473c555f3b5c5703 (diff) | |
parent | 0968c5b64a528ff92a5a93f6586eef557546da25 (diff) | |
download | iced-b474a2b7a763dcde6a377cb409001a7b5285ee8d.tar.gz iced-b474a2b7a763dcde6a377cb409001a7b5285ee8d.tar.bz2 iced-b474a2b7a763dcde6a377cb409001a7b5285ee8d.zip |
Merge pull request #2085 from bungoboingo/shader-widget
[Feature] Custom Shader Widget
Diffstat (limited to 'examples/custom_shader/Cargo.toml')
-rw-r--r-- | examples/custom_shader/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/custom_shader/Cargo.toml b/examples/custom_shader/Cargo.toml new file mode 100644 index 00000000..b602f98d --- /dev/null +++ b/examples/custom_shader/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "custom_shader" +version = "0.1.0" +authors = ["Bingus <shankern@protonmail.com>"] +edition = "2021" + +[dependencies] +iced.workspace = true +iced.features = ["debug", "advanced"] + +image.workspace = true +bytemuck.workspace = true + +glam.workspace = true +glam.features = ["bytemuck"] + +rand = "0.8.5" |