diff options
author | Aleksey Kladov <[email protected]> | 2020-10-19 14:18:28 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-10-19 14:18:28 +0100 |
commit | 842111535451186807389129ba4cf62c93b00576 (patch) | |
tree | 7f0c7bc2cfdc88587c7861c71d3d727e8d014dbe | |
parent | b19040fae4a9c31b71880473d143e3c47d332098 (diff) |
Try to fix publishing
This errro specifically:
Updating crates.io index
error: failed to select a version for the requirement `ra_ap_stdx = "^0.0.0"`
candidate versions found which didn't match: 0.0.20
location searched: /home/runner/work/rust-analyzer/rust-analyzer/crates/stdx
required by package `ra_ap_completion v0.0.20 (/home/runner/work/rust-analyzer/rust-analyzer/crates/completion)`
error: unable to update Cargo.lock
Error: Process completed with exit code 1.
-rw-r--r-- | crates/completion/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/completion/Cargo.toml b/crates/completion/Cargo.toml index 99087c73f..25192456a 100644 --- a/crates/completion/Cargo.toml +++ b/crates/completion/Cargo.toml | |||
@@ -14,6 +14,7 @@ itertools = "0.9.0" | |||
14 | log = "0.4.8" | 14 | log = "0.4.8" |
15 | rustc-hash = "1.1.0" | 15 | rustc-hash = "1.1.0" |
16 | 16 | ||
17 | stdx = { path = "../stdx", version = "0.0.0" } | ||
17 | syntax = { path = "../syntax", version = "0.0.0" } | 18 | syntax = { path = "../syntax", version = "0.0.0" } |
18 | text_edit = { path = "../text_edit", version = "0.0.0" } | 19 | text_edit = { path = "../text_edit", version = "0.0.0" } |
19 | base_db = { path = "../base_db", version = "0.0.0" } | 20 | base_db = { path = "../base_db", version = "0.0.0" } |
@@ -29,4 +30,3 @@ hir = { path = "../hir", version = "0.0.0" } | |||
29 | 30 | ||
30 | [dev-dependencies] | 31 | [dev-dependencies] |
31 | expect-test = "1.0" | 32 | expect-test = "1.0" |
32 | stdx = { path = "../stdx", version = "0.0.0" } | ||