Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUpdate from git servo/rust-geom to crates.io euclid #6406
Closed
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
rust-geom has been renamed to euclid (because geom was already taken) and published on crates.io. We should update Servo and its dependencies accordingly. In
components/servo/Cargo.lockI count 4 crates in other repositories that need to updated:… and 16 in this repository:
In each case:
this section of
Cargo.toml:needs to be replaced with
geom = "0.1"in the[dependencies]sectionextern crate geom;inlib.rsneeds to be replaced withextern crate euclid as geom;orextern crate euclid;. In the latter case, the rest of the code also needs to be updated with the new name.