summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crate_files/Cargo.toml2
m---------crates_io_client6
-rw-r--r--front_end/Cargo.toml2
-rw-r--r--kitchen_sink/Cargo.toml6
-rw-r--r--reindex/Cargo.toml4
-rw-r--r--rich_crate/Cargo.toml4
-rw-r--r--user_db/Cargo.toml2
7 files changed, 16 insertions, 10 deletions
diff --git a/crate_files/Cargo.toml b/crate_files/Cargo.toml
index 526b14a..b8dce4f 100644
--- a/crate_files/Cargo.toml
+++ b/crate_files/Cargo.toml
@@ -10,5 +10,5 @@ libflate = "0.1.14"
cargo_toml = "0.6.4"
render_readme = { git = "https://gitlab.com/crates.rs/render_readme.git" }
repo_url = { git = "https://gitlab.com/crates.rs/repo_url.git" }
-udedokei = { git = "https://gitlab.com/crates.rs/udedokei.git" }
+udedokei = { path = "../udedokei" }
quick-error = "1.2.2"
diff --git a/crates_io_client b/crates_io_client
-Subproject a17d9eb5016b476b4152e2e5f75a2d2a758281b
+Subproject 9d032ad3d98472ab12577bbf48c873ebf3f22d6
diff --git a/front_end/Cargo.toml b/front_end/Cargo.toml
index fa3ce8d..3f0bded 100644
--- a/front_end/Cargo.toml
+++ b/front_end/Cargo.toml
@@ -17,7 +17,7 @@ kitchen_sink = { path = "../kitchen_sink", version = "0.7.0" }
rich_crate = { path = "../rich_crate" }
render_readme = { git = "https://gitlab.com/crates.rs/render_readme.git", version = "0.5.0" }
categories = { path = "../categories" }
-udedokei = { git = "https://gitlab.com/crates.rs/udedokei.git" }
+udedokei = { path = "../udedokei" }
search_index = { path = "../search_index" }
rayon = "1.0.3"
failure = "0.1.2"
diff --git a/kitchen_sink/Cargo.toml b/kitchen_sink/Cargo.toml
index ca5411e..50195dc 100644
--- a/kitchen_sink/Cargo.toml
+++ b/kitchen_sink/Cargo.toml
@@ -13,10 +13,10 @@ path = "src/lib_kitchen_sink.rs"
crates-index = "0.12.0"
crates_io_client = { git = "https://gitlab.com/crates.rs/crates_io_client.git", version = "0.6.0" }
docs_rs_client = { git = "https://gitlab.com/crates.rs/docs_rs_client.git", version = "0.4.0" }
-github_info = { git = "https://gitlab.com/crates.rs/github_info.git", version = "0.8.0" }
+github_info = { path = "../github_info", version = "0.8.0" }
crate_git_checkout = { git = "https://gitlab.com/crates.rs/crate_git_checkout.git", version = "0.4.0" }
-crate_files = { git = "https://gitlab.com/crates.rs/crate_files.git", version = "0.2" }
-user_db = { git = "https://gitlab.com/crates.rs/user_db.git", version = "0.3" }
+crate_files = { path = "../crate_files", version = "0.2" }
+user_db = { path = "../user_db", version = "0.3" }
crate_db = { path = "../crate_db", version = "0.4.0" }
categories = { path = "../categories" }
rich_crate = { path = "../rich_crate", version = "0.4.1" }
diff --git a/reindex/Cargo.toml b/reindex/Cargo.toml
index 06e4781..58710b1 100644
--- a/reindex/Cargo.toml
+++ b/reindex/Cargo.toml
@@ -6,10 +6,10 @@ authors = ["Kornel <kornel@geekhood.net>"]
[dependencies]
crate_db = { path = "../crate_db", version = "0.4.0" }
-github_info = { git = "https://gitlab.com/crates.rs/github_info.git", version = "0.8.0" }
+github_info = { path = "../github_info", version = "0.8.0" }
kitchen_sink = { path = "../kitchen_sink", version = "0.7.0" }
repo_url = { git = "https://gitlab.com/crates.rs/repo_url.git" }
-user_db = { git = "https://gitlab.com/crates.rs/user_db.git", version = "0.3" }
+user_db = { path = "../user_db", version = "0.3" }
failure = "0.1.1"
rayon = "1.0.3"
rand = "0.6"
diff --git a/rich_crate/Cargo.toml b/rich_crate/Cargo.toml
index adb5f19..e4f9d2d 100644
--- a/rich_crate/Cargo.toml
+++ b/rich_crate/Cargo.toml
@@ -10,8 +10,8 @@ license = "Apache-2.0 OR MIT"
crates-index = "0.12.0"
crates_io_client = { git = "https://gitlab.com/crates.rs/crates_io_client.git", version = "0.6.0" }
render_readme = { git = "https://gitlab.com/crates.rs/render_readme.git", version = "0.5.0" }
-categories = { git = "https://gitlab.com/crates.rs/categories.git" }
-udedokei = { git = "https://gitlab.com/crates.rs/udedokei.git" }
+categories = { path = "../categories" }
+udedokei = { path = "../udedokei" }
cargo_author = "1.0.0"
cargo_toml = "0.6.4"
repo_url = { git = "https://gitlab.com/crates.rs/repo_url.git" }
diff --git a/user_db/Cargo.toml b/user_db/Cargo.toml
index 7351ba8..2c1b0bf 100644
--- a/user_db/Cargo.toml
+++ b/user_db/Cargo.toml
@@ -11,6 +11,6 @@ path = "src/lib_user_db.rs"
[dependencies]
rusqlite = "0.16"
-github_info = { git = "https://gitlab.com/crates.rs/github_info.git", version = "0.8.0" }
+github_info = { path = "../github_info", version = "0.8.0" }
repo_url = { git = "https://gitlab.com/crates.rs/repo_url.git" }
failure = "0.1.1"