mirror of
https://github.com/servo/servo
synced 2026-05-14 10:56:44 +02:00
Have embedders send DOM keys to servo and use a strongly typed KeyboardEvent from the W3C UI Events spec. All keyboard handling now uses the new types. Introduce a ShortcutMatcher to recognize key bindings. Shortcuts are now recognized in a uniform way. Updated the winit port. Updated webdriver integration. part of #20331
22 lines
471 B
TOML
22 lines
471 B
TOML
[package]
|
|
name = "msg"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "msg"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
malloc_size_of_derive = { path = "../malloc_size_of_derive" }
|
|
serde = "1.0.60"
|
|
webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]}
|
|
|
|
[dev-dependencies]
|
|
size_of_test = {path = "../size_of_test"}
|