[dev-servo] Problems fetching crates while building servo-glutin.

2016-06-02 Thread sowani
Hi, While building Servo source on Ubuntu 15.10, servo-glutin failed because it couldn't get wayland-client crate. Here is the output of "cargo build" executed inside servo/.cargo/registry/src/github.com-1ecc6299db9ec823/servo-glutin-0.4.16: cargo build --verbose Fresh libc v0.2.11

Re: [dev-servo] Problems fetching crates while building servo-glutin.

2016-06-02 Thread Simon Sapin
On 02/06/16 10:31, sow...@gmail.com wrote: crate.io does show that wayland-client crate is available. Any idea how to make build get this crate? The package name (known by Cargo and crates.io) is wayland-client, it’s the library name (known by rustc) that’s wayland_client. https://crates.io/

Re: [dev-servo] Problems fetching crates while building servo-glutin.

2016-06-02 Thread sowani
Yes, earlier I thought it's was a typo with "extern crate wayland-client" but looks like that's the correct way as "_" throws up immediate error. I also tried using --verbose while compiling servo and the output is as follows: [ snip ] Compiling profile_traits v0.0.1 (file:///root/servo-modi

Re: [dev-servo] Problems fetching crates while building servo-glutin.

2016-06-05 Thread sowani
Is there any way I can download this crate (and other required crates) from crate.io and make it available locally (i.e. asking compiler to look in local directory)? Thanks, Atul. ___ dev-servo mailing list dev-servo@lists.mozilla.org https://lists.moz

Re: [dev-servo] Problems fetching crates while building servo-glutin.

2016-06-06 Thread Josh Matthews
On 2016-06-06 5:15 AM, sow...@gmail.com wrote: Is there any way I can download this crate (and other required crates) from crate.io and make it available locally (i.e. asking compiler to look in local directory)? Thanks, Atul. It sounds like you want to set up Cargo overrides: http://doc.c