-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
68 lines (61 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
resolver = "2"
members = [
"examples/run_wasm",
"examples/demo",
"examples/drag_n_drop",
"examples/text",
"examples/scene",
"examples/svg",
"examples/lottie",
"examples/scene_ui",
"examples/render_layers",
"examples/cube3d",
]
[workspace.package]
edition = "2021"
version = "0.6.1"
license = "(MIT OR Apache-2.0) AND OFL-1.1"
repository = "https://github.com/linebender/bevy_vello"
[workspace.dependencies]
bevy = { version = "0.14.0", default-features = false, features = [
"bevy_asset",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"bevy_ui",
"multi_threaded",
"x11",
"tonemapping_luts",
"bevy_gizmos",
] }
[package]
name = "bevy_vello"
description = "Render assets and scenes in Bevy with Vello"
authors = [
"Sebastian Hamel <[email protected]>",
"Spencer C. Imbleau <[email protected]>",
]
keywords = ["gamedev", "graphics"]
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
[lib]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { workspace = true }
vello = "0.2.1"
vello_svg = "0.3.0"
velato = "0.3.0"
thiserror = "1.0.61"
once_cell = "1.19.0"
[dev-dependencies]
wasm-bindgen-test = "0.3.42"
[features]
default = ["default_font"]
svg = []
lottie = []
experimental-dotLottie = ["lottie"]
default_font = []