diff options
author | Aramis Razzaghipour <[email protected]> | 2021-01-17 06:52:57 +0000 |
---|---|---|
committer | Aramis Razzaghipour <[email protected]> | 2021-01-17 06:52:57 +0000 |
commit | 709034d123c78c607a60b098c6f576414d4df451 (patch) | |
tree | d5d2ef0fe5bd44d1bcd57423f116551ba79cd488 | |
parent | 054e2061521292a72748510f3f6cb7c8b1e8611b (diff) |
Depend on local copy of la-arena instead of crates.io’s
-rw-r--r-- | Cargo.lock | 16 | ||||
-rw-r--r-- | crates/hir_def/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/hir_expand/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/hir_ty/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/profile/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/project_model/Cargo.toml | 2 |
6 files changed, 10 insertions, 16 deletions
diff --git a/Cargo.lock b/Cargo.lock index 0d23bcc9e..8ef37a784 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -552,7 +552,7 @@ dependencies = [ | |||
552 | "hir_expand", | 552 | "hir_expand", |
553 | "indexmap", | 553 | "indexmap", |
554 | "itertools 0.10.0", | 554 | "itertools 0.10.0", |
555 | "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 555 | "la-arena", |
556 | "log", | 556 | "log", |
557 | "mbe", | 557 | "mbe", |
558 | "once_cell", | 558 | "once_cell", |
@@ -571,7 +571,7 @@ version = "0.0.0" | |||
571 | dependencies = [ | 571 | dependencies = [ |
572 | "base_db", | 572 | "base_db", |
573 | "either", | 573 | "either", |
574 | "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 574 | "la-arena", |
575 | "log", | 575 | "log", |
576 | "mbe", | 576 | "mbe", |
577 | "parser", | 577 | "parser", |
@@ -596,7 +596,7 @@ dependencies = [ | |||
596 | "hir_def", | 596 | "hir_def", |
597 | "hir_expand", | 597 | "hir_expand", |
598 | "itertools 0.10.0", | 598 | "itertools 0.10.0", |
599 | "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 599 | "la-arena", |
600 | "log", | 600 | "log", |
601 | "once_cell", | 601 | "once_cell", |
602 | "profile", | 602 | "profile", |
@@ -772,12 +772,6 @@ name = "la-arena" | |||
772 | version = "0.1.1" | 772 | version = "0.1.1" |
773 | 773 | ||
774 | [[package]] | 774 | [[package]] |
775 | name = "la-arena" | ||
776 | version = "0.1.1" | ||
777 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
778 | checksum = "383ed2a74426d1051751f6483a7160b98f36068224857cd4c953b34719476fc3" | ||
779 | |||
780 | [[package]] | ||
781 | name = "lazy_static" | 775 | name = "lazy_static" |
782 | version = "1.4.0" | 776 | version = "1.4.0" |
783 | source = "registry+https://github.com/rust-lang/crates.io-index" | 777 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1203,7 +1197,7 @@ name = "profile" | |||
1203 | version = "0.0.0" | 1197 | version = "0.0.0" |
1204 | dependencies = [ | 1198 | dependencies = [ |
1205 | "cfg-if 1.0.0", | 1199 | "cfg-if 1.0.0", |
1206 | "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1200 | "la-arena", |
1207 | "libc", | 1201 | "libc", |
1208 | "once_cell", | 1202 | "once_cell", |
1209 | "perf-event", | 1203 | "perf-event", |
@@ -1218,7 +1212,7 @@ dependencies = [ | |||
1218 | "cargo_metadata", | 1212 | "cargo_metadata", |
1219 | "cfg", | 1213 | "cfg", |
1220 | "itertools 0.10.0", | 1214 | "itertools 0.10.0", |
1221 | "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1215 | "la-arena", |
1222 | "log", | 1216 | "log", |
1223 | "paths", | 1217 | "paths", |
1224 | "proc_macro_api", | 1218 | "proc_macro_api", |
diff --git a/crates/hir_def/Cargo.toml b/crates/hir_def/Cargo.toml index 5d21283f7..023d288d1 100644 --- a/crates/hir_def/Cargo.toml +++ b/crates/hir_def/Cargo.toml | |||
@@ -20,7 +20,7 @@ fst = { version = "0.4", default-features = false } | |||
20 | itertools = "0.10.0" | 20 | itertools = "0.10.0" |
21 | indexmap = "1.4.0" | 21 | indexmap = "1.4.0" |
22 | smallvec = "1.4.0" | 22 | smallvec = "1.4.0" |
23 | la-arena = "0.1.0" | 23 | la-arena = { version = "0.1.0", path = "../../lib/arena" } |
24 | 24 | ||
25 | stdx = { path = "../stdx", version = "0.0.0" } | 25 | stdx = { path = "../stdx", version = "0.0.0" } |
26 | base_db = { path = "../base_db", version = "0.0.0" } | 26 | base_db = { path = "../base_db", version = "0.0.0" } |
diff --git a/crates/hir_expand/Cargo.toml b/crates/hir_expand/Cargo.toml index b535a3d4f..1b1c7da65 100644 --- a/crates/hir_expand/Cargo.toml +++ b/crates/hir_expand/Cargo.toml | |||
@@ -13,7 +13,7 @@ doctest = false | |||
13 | log = "0.4.8" | 13 | log = "0.4.8" |
14 | either = "1.5.3" | 14 | either = "1.5.3" |
15 | rustc-hash = "1.0.0" | 15 | rustc-hash = "1.0.0" |
16 | la-arena = "0.1.0" | 16 | la-arena = { version = "0.1.0", path = "../../lib/arena" } |
17 | 17 | ||
18 | base_db = { path = "../base_db", version = "0.0.0" } | 18 | base_db = { path = "../base_db", version = "0.0.0" } |
19 | syntax = { path = "../syntax", version = "0.0.0" } | 19 | syntax = { path = "../syntax", version = "0.0.0" } |
diff --git a/crates/hir_ty/Cargo.toml b/crates/hir_ty/Cargo.toml index 436c1405b..a6916af90 100644 --- a/crates/hir_ty/Cargo.toml +++ b/crates/hir_ty/Cargo.toml | |||
@@ -20,7 +20,7 @@ scoped-tls = "1" | |||
20 | chalk-solve = { version = "0.47", default-features = false } | 20 | chalk-solve = { version = "0.47", default-features = false } |
21 | chalk-ir = "0.47" | 21 | chalk-ir = "0.47" |
22 | chalk-recursive = "0.47" | 22 | chalk-recursive = "0.47" |
23 | la-arena = "0.1.0" | 23 | la-arena = { version = "0.1.0", path = "../../lib/arena" } |
24 | 24 | ||
25 | stdx = { path = "../stdx", version = "0.0.0" } | 25 | stdx = { path = "../stdx", version = "0.0.0" } |
26 | hir_def = { path = "../hir_def", version = "0.0.0" } | 26 | hir_def = { path = "../hir_def", version = "0.0.0" } |
diff --git a/crates/profile/Cargo.toml b/crates/profile/Cargo.toml index 096233a09..1b8f610bb 100644 --- a/crates/profile/Cargo.toml +++ b/crates/profile/Cargo.toml | |||
@@ -13,7 +13,7 @@ doctest = false | |||
13 | once_cell = "1.3.1" | 13 | once_cell = "1.3.1" |
14 | cfg-if = "1" | 14 | cfg-if = "1" |
15 | libc = "0.2.73" | 15 | libc = "0.2.73" |
16 | la-arena = "0.1.0" | 16 | la-arena = { version = "0.1.0", path = "../../lib/arena" } |
17 | 17 | ||
18 | [target.'cfg(target_os = "linux")'.dependencies] | 18 | [target.'cfg(target_os = "linux")'.dependencies] |
19 | perf-event = "0.4" | 19 | perf-event = "0.4" |
diff --git a/crates/project_model/Cargo.toml b/crates/project_model/Cargo.toml index 51e7a7070..0747fee96 100644 --- a/crates/project_model/Cargo.toml +++ b/crates/project_model/Cargo.toml | |||
@@ -17,7 +17,7 @@ serde = { version = "1.0.106", features = ["derive"] } | |||
17 | serde_json = "1.0.48" | 17 | serde_json = "1.0.48" |
18 | anyhow = "1.0.26" | 18 | anyhow = "1.0.26" |
19 | itertools = "0.10.0" | 19 | itertools = "0.10.0" |
20 | la-arena = "0.1.0" | 20 | la-arena = { version = "0.1.0", path = "../../lib/arena" } |
21 | 21 | ||
22 | cfg = { path = "../cfg", version = "0.0.0" } | 22 | cfg = { path = "../cfg", version = "0.0.0" } |
23 | base_db = { path = "../base_db", version = "0.0.0" } | 23 | base_db = { path = "../base_db", version = "0.0.0" } |