Skip to content

Commit 41ec29b

Browse files
authored
chore: bump compiler_base version (#1204)
Signed-off-by: zongz <[email protected]>
1 parent f112a49 commit 41ec29b

File tree

24 files changed

+576
-572
lines changed

24 files changed

+576
-572
lines changed

compiler_base/3rdparty/rustc_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_data_structures"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"

compiler_base/3rdparty/rustc_errors/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_errors"
3-
version = "0.0.2"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"

compiler_base/3rdparty/rustc_errors/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ pub trait Style {
2323
/// # Example
2424
///
2525
/// ```rust
26+
/// use termcolor::Color;
27+
/// use termcolor::ColorSpec;
28+
/// use rustc_errors::Style;
2629
/// #[derive(Copy, Clone, Debug, PartialEq, Eq)]
2730
/// pub enum DummyStyle {
2831
/// Dummy,
@@ -37,6 +40,7 @@ pub trait Style {
3740
/// DummyStyle::Dummy => {
3841
/// spec.set_fg(Some(Color::Red)).set_intense(true);
3942
/// }
43+
/// DummyStyle::NoStyle => todo!()
4044
/// }
4145
/// spec
4246
/// }

compiler_base/3rdparty/rustc_span/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_span"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"

compiler_base/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compiler_base"
3-
version = "0.1.0"
3+
version = "0.1.4"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"
@@ -23,4 +23,6 @@ members = [
2323
"error",
2424
"parallel",
2525
"3rdparty/rustc_errors",
26+
"3rdparty/rustc_data_structures",
27+
"3rdparty/rustc_span",
2628
]

compiler_base/error/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compiler_base_error"
3-
version = "0.0.10"
3+
version = "0.1.3"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"
@@ -14,11 +14,11 @@ categories = ["command-line-utilities"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
compiler_base_span = "0.0.1"
18-
compiler_base_macros = "0.0.1"
17+
compiler_base_span = "0.1.1"
18+
compiler_base_macros = "0.1.1"
1919
pretty_assertions = "1.3.0"
20-
rustc_span = "0.0.1"
21-
rustc_errors = "0.0.2"
20+
rustc_span = "0.1.0"
21+
rustc_errors = "0.1.2"
2222
unic-langid = {version="0.9.0", features = ["macros"]}
2323

2424
fluent = "0.16.0"

compiler_base/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compiler_base_macros"
3-
version = "0.0.1"
3+
version = "0.1.1"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"

compiler_base/parallel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compiler_base_parallel"
3-
version = "0.0.3"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"

compiler_base/session/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compiler_base_session"
3-
version = "0.0.13"
3+
version = "0.1.1"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"
@@ -14,6 +14,6 @@ categories = ["command-line-utilities"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
compiler_base_span = "0.0.1"
18-
compiler_base_error = "0.0.10"
17+
compiler_base_span = "0.1.1"
18+
compiler_base_error = "0.1.3"
1919
anyhow = "1.0"

compiler_base/span/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compiler_base_span"
3-
version = "0.0.2"
3+
version = "0.1.1"
44
edition = "2021"
55
authors = ["[email protected]"]
66
license = "Apache-2.0 OR MIT"
@@ -14,4 +14,4 @@ categories = ["command-line-utilities"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
rustc_span = "0.0.1"
17+
rustc_span = "0.1.0"

0 commit comments

Comments
 (0)