-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump compiler_base version (#1204)
Signed-off-by: zongz <[email protected]>
- Loading branch information
Showing
24 changed files
with
576 additions
and
572 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.0.1" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
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_errors" | ||
version = "0.0.2" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
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.0.1" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
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" | ||
version = "0.1.0" | ||
version = "0.1.4" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -23,4 +23,6 @@ members = [ | |
"error", | ||
"parallel", | ||
"3rdparty/rustc_errors", | ||
"3rdparty/rustc_data_structures", | ||
"3rdparty/rustc_span", | ||
] |
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.0.10" | ||
version = "0.1.3" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -14,11 +14,11 @@ 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.0.1" | ||
compiler_base_macros = "0.0.1" | ||
compiler_base_span = "0.1.1" | ||
compiler_base_macros = "0.1.1" | ||
pretty_assertions = "1.3.0" | ||
rustc_span = "0.0.1" | ||
rustc_errors = "0.0.2" | ||
rustc_span = "0.1.0" | ||
rustc_errors = "0.1.2" | ||
unic-langid = {version="0.9.0", features = ["macros"]} | ||
|
||
fluent = "0.16.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_macros" | ||
version = "0.0.1" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
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_parallel" | ||
version = "0.0.3" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
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.0.13" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["[email protected]"] | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -14,6 +14,6 @@ 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.0.1" | ||
compiler_base_error = "0.0.10" | ||
compiler_base_span = "0.1.1" | ||
compiler_base_error = "0.1.3" | ||
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.0.2" | ||
version = "0.1.1" | ||
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.0.1" | ||
rustc_span = "0.1.0" |
Oops, something went wrong.