This repository was archived by the owner on Mar 7, 2019. It is now read-only.
  
  
  
  
  
Description
Hi :) I'm new to Rust, but so far I managed to build Servo (on Windows), and after some failed attempts I figured out how to build ServoShell using my Servo clone as local requirement, by changing:
+++ b/Cargo.toml
...
-libservo = { git = "https://github.com/servo/servo", rev = "989d2fd532" }
+libservo = { path = "../engine/components/servo" }
 
(Directly building w/cargo build instead of using mach)
Is there some less intrusive way for defining the local Servo dependency (w/o the need to make changes to tracked files like Cargo.toml)? And could you please briefly explain the preferred way in your README?