diff --git a/packages/blitz/Cargo.toml b/packages/blitz/Cargo.toml index 1d01a462..e2631030 100644 --- a/packages/blitz/Cargo.toml +++ b/packages/blitz/Cargo.toml @@ -3,7 +3,9 @@ name = "blitz" version = "0.1.0" edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[features] +accesskit = ["dep:accesskit"] +default = ["accesskit"] [dependencies] slab = "0.4.9" @@ -16,6 +18,7 @@ tokio = { workspace = true, features = ["full"] } vello = { workspace = true } wgpu = { workspace = true } +accesskit = { version = "0.15.0", optional = true } app_units = "0.7.3" atomic_refcell = { version = "0.1.13", features = ["serde"] } fxhash = "0.2.1"