mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
We need to introduce another Cursor enum that is specific to embedder_traits and that layout converts to to avoid dependency hell.
25 lines
566 B
TOML
25 lines
566 B
TOML
[package]
|
|
name = "embedder_traits"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "embedder_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
crossbeam-channel = "0.3"
|
|
ipc-channel = "0.11"
|
|
keyboard-types = "0.4.3"
|
|
lazy_static = "1"
|
|
log = "0.4"
|
|
msg = {path = "../msg"}
|
|
num-traits = "0.2"
|
|
num-derive = "0.2"
|
|
serde = "1.0"
|
|
servo_url = {path = "../url"}
|
|
style_traits = {path = "../style_traits", features = ["servo"]}
|
|
webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]}
|