-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (48 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
62 lines (48 loc) · 1.28 KB
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
[workspace]
resolver = "2"
members = [
"crates/anyrender-makepad",
"crates/makepad-blitz",
"examples/basic",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/user/makepad-blitz"
[workspace.dependencies]
# Internal crates
anyrender-makepad = { path = "crates/anyrender-makepad" }
makepad-blitz = { path = "crates/makepad-blitz" }
# Blitz rendering abstraction (must match blitz-paint's version)
anyrender = "0.6"
# Blitz HTML/CSS engine
blitz-dom = { version = "0.2", features = ["incremental"] }
blitz-html = "0.2"
blitz-traits = "0.2"
blitz-paint = "0.2"
# Graphics types (must match anyrender's versions)
peniko = "0.5"
kurbo = "0.12"
# Path tessellation
lyon = "1.0"
# Makepad (dev branch)
makepad-widgets = { git = "https://github.com/makepad/makepad", branch = "dev" }
makepad-draw = { git = "https://github.com/makepad/makepad", branch = "dev" }
makepad-platform = { git = "https://github.com/makepad/makepad", branch = "dev" }
# Font parsing and rasterization
ttf-parser = "0.25"
fontdue = "0.9"
# Utilities
log = "0.4"
# Image decoding
image = "0.25"
# HTML parsing types
markup5ever = "0.14"
[profile.dev]
opt-level = 1
[profile.release]
lto = "thin"
codegen-units = 1
[profile.dev.package."*"]
opt-level = 3