-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix compile fail on windows for rustc_data_structure and bump ve…
…rsion (#1245) * fix: fix windows compile error in rustc_data_structures Signed-off-by: zongz <[email protected]> * chore: bump rustc_data_structure version to 0.1.2 Signed-off-by: zongz <[email protected]> * chore: bump rustc_span version to 0.1.2 Signed-off-by: zongz <[email protected]> * chore: bump compiler_base_span version to 0.1.3 Signed-off-by: zongz <[email protected]> * chore: bump compiler_base_error version to 0.1.6 Signed-off-by: zongz <[email protected]> * chore: bump compiler_base_session version to 0.1.3 Signed-off-by: zongz <[email protected]> * fix: bump all compiler_base dependencies version Signed-off-by: zongz <[email protected]> --------- Signed-off-by: zongz <[email protected]>
- Loading branch information
Showing
18 changed files
with
35 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rustc_data_structures" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -34,7 +34,7 @@ tempfile = "3.5.0" | |
version = "0.12" | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
winapi = { version = "0.3", features = ["fileapi", "psapi", "winerror"] } | ||
winapi = { version = "0.3", features = ["std", "fileapi", "psapi", "winerror"] } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
memmap2 = "0.2.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rustc_span" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -15,7 +15,7 @@ categories = ["command-line-utilities"] | |
doctest = false | ||
|
||
[dependencies] | ||
rustc_data_structures = "0.1.1" | ||
rustc_data_structures = "0.1.2" | ||
scoped-tls = "1.0" | ||
unicode-width = "0.1.4" | ||
cfg-if = "0.1.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "compiler_base_error" | ||
version = "0.1.5" | ||
version = "0.1.6" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -14,10 +14,10 @@ categories = ["command-line-utilities"] | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
compiler_base_span = "0.1.2" | ||
compiler_base_span = "0.1.3" | ||
compiler_base_macros = "0.1.1" | ||
pretty_assertions = "1.3.0" | ||
rustc_span = "0.1.1" | ||
rustc_span = "0.1.2" | ||
rustc_errors = "0.1.2" | ||
unic-langid = {version="0.9.0", features = ["macros"]} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "compiler_base_session" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -15,5 +15,5 @@ categories = ["command-line-utilities"] | |
|
||
[dependencies] | ||
compiler_base_span = "0.1.2" | ||
compiler_base_error = "0.1.5" | ||
compiler_base_error = "0.1.6" | ||
anyhow = "1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "compiler_base_span" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -14,4 +14,4 @@ categories = ["command-line-utilities"] | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
rustc_span = "0.1.1" | ||
rustc_span = "0.1.2" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters