diff options
Diffstat (limited to 'components/webvr')
-rw-r--r-- | components/webvr/Cargo.toml | 3 | ||||
-rw-r--r-- | components/webvr/lib.rs | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/components/webvr/Cargo.toml b/components/webvr/Cargo.toml index b7f3c76c49e..7d751173906 100644 --- a/components/webvr/Cargo.toml +++ b/components/webvr/Cargo.toml @@ -22,7 +22,8 @@ gleam = "0.6" ipc-channel = "0.11.2" log = "0.4" msg = {path = "../msg"} -rust-webvr = {version = "0.11.3", features = ["mock", "openvr", "vrexternal"]} +rust-webvr = {version = "0.11.4", features = ["mock", "openvr", "vrexternal"]} +rust-webvr-api = "0.11.4" script_traits = {path = "../script_traits"} servo_config = {path = "../config"} webvr_traits = {path = "../webvr_traits" } diff --git a/components/webvr/lib.rs b/components/webvr/lib.rs index cc24381ca57..e281f4937eb 100644 --- a/components/webvr/lib.rs +++ b/components/webvr/lib.rs @@ -12,3 +12,4 @@ pub use crate::webvr_thread::{WebVRCompositorHandler, WebVRThread}; pub use rust_webvr::api::VRExternalShmemPtr; pub use rust_webvr::VRMainThreadHeartbeat; pub use rust_webvr::VRServiceManager; +pub use rust_webvr_api::VRService; |