mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
32 lines
904 B
TOML
32 lines
904 B
TOML
[package]
|
|
name = "libmlservo"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "mlservo"
|
|
crate-type = ["staticlib"]
|
|
test = false
|
|
bench = false
|
|
|
|
[features]
|
|
canvas2d-azure = ["simpleservo/canvas2d-azure"]
|
|
canvas2d-raqote = ["simpleservo/canvas2d-raqote"]
|
|
egl = ["simpleservo/egl"]
|
|
layout-2013 = ["simpleservo/layout-2013"]
|
|
layout-2020 = ["simpleservo/layout-2020"]
|
|
|
|
[dependencies]
|
|
libservo = { path = "../../components/servo", features = ["no_static_freetype"] }
|
|
simpleservo = { path = "../libsimpleservo/api", features = ["no_static_freetype"] }
|
|
rust-webvr = { version = "0.17", features = ["magicleap"] }
|
|
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|
|
webxr = { git = "https://github.com/servo/webxr", features = ["ipc", "magicleap"] }
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
servo-egl = "0.2"
|
|
smallvec = "0.6"
|
|
|