-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 838 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 838 Bytes
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
[package]
name = "android-view-demo"
version = "0.1.0"
edition = "2024"
[lib]
name = "main"
crate-type = ["cdylib"]
[dependencies]
accesskit = "0.21.0"
accesskit_android = "0.4.0"
android-view = { path = ".." }
android_logger = "0.15.0"
anyhow = "1.0.96"
log = "0.4.26"
parley = { version = "0.6.0", features = ["accesskit"] }
peniko = { version = "0.5.0", default-features = false }
pollster = "0.4.0"
ui-events = "0.1.0"
vello = "0.6.0"
# Send tracing events to Android GPU inspector, for profiling
tracing_android_trace = "0.1.1"
tracing-subscriber = "0.3.19"
# Make events recorded with profiling (e.g. in wgpu) visible to Android GPU inspector
profiling = { version = "1.0.16", features = ["profile-with-tracing"] }
# Make events recorded to `tracing` visible in logcat
tracing = { version = "0.1.38", features = ["log-always"] }