Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deduplicate some dependencies. #5968

Merged
merged 1 commit into from May 7, 2015
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Deduplicate some dependencies.

This uses some dependencies from crates.io instead of git
where the crates.io copy was already used in some other part
of the dependency tree, so we had two copies of the same library.

The `android_glue` crate is the only one left where we have two copies,
but solving that is more tricky since we hard-code a path in
`components/servo/.cargo/config`.
  • Loading branch information
SimonSapin committed May 6, 2015
commit 0d226722b70244a1db8ad25b93b0052b2722c6da
@@ -32,4 +32,4 @@ regex = "0.1.14"
regex_macros = "0.1.8"
hyper = "0.3"
flate2 = "0.2.0"
uuid = "*"
uuid = "0.1.16"
@@ -60,9 +60,6 @@ git = "https://github.com/servo/rust-mozjs"
[dependencies.png]
git = "https://github.com/servo/rust-png"

[dependencies.uuid]
git = "https://github.com/rust-lang/uuid"

[dependencies.string_cache]
git = "https://github.com/servo/string-cache"

@@ -81,3 +78,4 @@ cssparser = "0.3.1"
unicase = "0.1"
num = "0.1.24"
websocket = "0.11.0"
uuid = "0.1.16"

Some generated files are not rendered by default. Learn more.

@@ -21,9 +21,6 @@ git = "https://github.com/servo/rust-geom"
[dependencies.selectors]
git = "https://github.com/servo/rust-selectors"

[dependencies.lazy_static]
git = "https://github.com/Kimundi/lazy-static.rs"

[dependencies.string_cache]
git = "https://github.com/servo/string-cache"

@@ -39,3 +36,4 @@ mod_path = "0.1"
bitflags = "*"
cssparser = "0.3.1"
num = "0.1.24"
lazy_static = "0.1.10"
@@ -36,9 +36,6 @@ git = "https://github.com/servo/string-cache"
[dependencies.string_cache_plugin]
git = "https://github.com/servo/string-cache"

[dependencies.lazy_static]
git = "https://github.com/Kimundi/lazy-static.rs"

[dependencies]
bitflags = "*"
libc = "*"
@@ -50,3 +47,4 @@ num_cpus = "0.2.2"
fnv = "1.0"
cssparser = "0.3.1"
num = "0.1.24"
lazy_static = "0.1.10"
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.