lifthrasiir / rust-encoding

Character encoding support for Rust
MIT License
284 stars 59 forks source link

error: duplicate definition of type or module `RelativeSchemeData` #44

Closed ursic closed 10 years ago

ursic commented 10 years ago
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:210:1: 246:2 error: duplicate definition of type or module `RelativeSchemeData`
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:210 pub struct RelativeSchemeData {
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:211     /// The username of the URL, as a possibly empty, pecent-encoded string.
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:212     ///
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:213     /// Percent encoded strings are within the ASCII range.
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:214     ///
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:215     /// See also the `lossy_percent_decode_username` method.
                                                                                 ...
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:198:5: 198:43 note: first definition of type or module `RelativeSchemeData` here
.cargo/git/checkouts/rust-url-1e22af4233079a1e/master/src/lib.rs:198     RelativeSchemeData(RelativeSchemeData),
                                                                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: aborting due to previous error
SimonSapin commented 10 years ago

This is an issue in rust-url, not rust-encoding, and was fixed in https://github.com/servo/rust-url/pull/30

ursic commented 10 years ago

Yeah, sorry about that.

On Sun, Sep 21, 2014 at 7:22 PM, Simon Sapin notifications@github.com wrote:

This is an issue in rust-url, not rust-encoding, and was fixed in servo/rust-url#30 https://github.com/servo/rust-url/pull/30

— Reply to this email directly or view it on GitHub https://github.com/lifthrasiir/rust-encoding/issues/44#issuecomment-56305718 .