From 545c8a0dede0f2289fb60c33a31161276b37b99c Mon Sep 17 00:00:00 2001 From: michaelgrigoryan25 <56165400+michaelgrigoryan25@users.noreply.github.com> Date: Mon, 22 May 2023 19:20:28 +0400 Subject: [PATCH] Undo deletion of `ports/libmlservo/Cargo.toml` --- ports/libmlservo/Cargo.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 ports/libmlservo/Cargo.toml diff --git a/ports/libmlservo/Cargo.toml b/ports/libmlservo/Cargo.toml new file mode 100644 index 00000000000..3e86dd27730 --- /dev/null +++ b/ports/libmlservo/Cargo.toml @@ -0,0 +1,28 @@ +[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] +egl = ["simpleservo/egl"] +layout-2013 = ["simpleservo/layout-2013"] +layout-2020 = ["simpleservo/layout-2020"] + +[dependencies] +libc = { workspace = true } +libservo = { path = "../../components/servo", features = ["no_static_freetype"] } +log = { workspace = true } +servo-egl = "0.2" +simpleservo = { path = "../libsimpleservo/api", features = ["no_static_freetype"] } +smallvec = { workspace = true } +webxr = { git = "https://github.com/servo/webxr", features = ["ipc", "magicleap"] } +webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] } \ No newline at end of file