diff --git a/Cargo.toml b/Cargo.toml index 861c79e6d14..060be41a5d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,8 +15,6 @@ opt-level = 3 # lto = false [patch.crates-io] -webxr-api = { git = "https://github.com/servo/webxr.git" } -webxr = { git = "https://github.com/servo/webxr.git" } # If you need to temporarily test Servo with a local fork of some upstream # crate, add that here. Use the form: # diff --git a/components/canvas_traits/Cargo.toml b/components/canvas_traits/Cargo.toml index d9c9faaae6d..c477e3c8c06 100644 --- a/components/canvas_traits/Cargo.toml +++ b/components/canvas_traits/Cargo.toml @@ -27,4 +27,4 @@ serde_bytes = "0.10" servo_config = {path = "../config"} webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]} webvr_traits = {path = "../webvr_traits"} -webxr-api = "0.0.1" +webxr-api = {git = "https://github.com/servo/webxr"} diff --git a/components/compositing/Cargo.toml b/components/compositing/Cargo.toml index 57c34870f69..6ac076e3362 100644 --- a/components/compositing/Cargo.toml +++ b/components/compositing/Cargo.toml @@ -40,7 +40,7 @@ webrender = {git = "https://github.com/servo/webrender", features = ["capture"]} webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]} webvr_traits = {path = "../webvr_traits"} webvr = {path = "../webvr"} -webxr-api = "0.0.1" +webxr-api = {git = "https://github.com/servo/webxr"} [build-dependencies] toml = "0.4.5" diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index 0b927391f92..7d03959d767 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -78,7 +78,7 @@ webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]} webdriver_server = {path = "../webdriver_server", optional = true} webvr = {path = "../webvr"} webvr_traits = {path = "../webvr_traits"} -webxr-api = "0.0.1" +webxr-api = {git = "https://github.com/servo/webxr"} [target.'cfg(all(not(target_os = "windows"), not(target_os = "ios"), not(target_os="android"), not(target_arch="arm"), not(target_arch="aarch64")))'.dependencies] gaol = {git = "https://github.com/servo/gaol"} diff --git a/ports/glutin/Cargo.toml b/ports/glutin/Cargo.toml index c8fa4939951..54ddcb769cb 100644 --- a/ports/glutin/Cargo.toml +++ b/ports/glutin/Cargo.toml @@ -55,7 +55,7 @@ libservo = {path = "../../components/servo"} libc = "0.2" log = "0.4" rust-webvr = { version = "0.13", features = ["glwindow"] } -webxr = { version = "0.0.1", features = ["glwindow"] } +webxr = { git = "https://github.com/servo/webxr", features = ["glwindow"] } tinyfiledialogs = "3.0" [target.'cfg(any(target_os = "linux", target_os = "windows"))'.dependencies]