-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "vanilla_iced"
description = "Iced YUV shader"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
categories.workspace = true
keywords.workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
[dependencies]
bytemuck.workspace = true
glam = { workspace = true, features = ["bytemuck"] }
iced.workspace = true
iced_wgpu.workspace = true
itertools.workspace = true
[workspace]
resolver = "2"
members = [
"examples/*",
]
[workspace.package]
version = "0.1.0"
authors = ["Nick Senger <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/nicksenger/vanilla_iced"
categories = ["gui"]
keywords = ["gui", "ui", "graphics", "audio", "video", "widgets"]
[workspace.dependencies]
decoders = { path = "./examples/decoders" }
hacky_widget = { path = "./examples/hacky_widget" }
vanilla_iced = { version = "0.1", path = "." }
bytemuck = { version = "1.0", features = ["derive"] }
glam = "0.24"
iced = { git = "https://github.com/iced-rs/iced", features = ["advanced", "image", "lazy", "wgpu"] }
iced_wgpu = { git = "https://github.com/iced-rs/iced" }
itertools = "0.12"
thiserror = "1.0"