Skip to content

Commit

Permalink
chore: bump compiler_base version (#1204)
Browse files Browse the repository at this point in the history
Signed-off-by: zongz <[email protected]>
  • Loading branch information
zong-zhe authored Apr 9, 2024
1 parent f112a49 commit 41ec29b
Show file tree
Hide file tree
Showing 24 changed files with 576 additions and 572 deletions.
2 changes: 1 addition & 1 deletion compiler_base/3rdparty/rustc_data_structures/Cargo.toml
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"
Expand Down
2 changes: 1 addition & 1 deletion compiler_base/3rdparty/rustc_errors/Cargo.toml
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"
Expand Down
4 changes: 4 additions & 0 deletions compiler_base/3rdparty/rustc_errors/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ pub trait Style {
/// # Example
///
/// ```rust
/// use termcolor::Color;
/// use termcolor::ColorSpec;
/// use rustc_errors::Style;
/// #[derive(Copy, Clone, Debug, PartialEq, Eq)]
/// pub enum DummyStyle {
/// Dummy,
Expand All @@ -37,6 +40,7 @@ pub trait Style {
/// DummyStyle::Dummy => {
/// spec.set_fg(Some(Color::Red)).set_intense(true);
/// }
/// DummyStyle::NoStyle => todo!()
/// }
/// spec
/// }
Expand Down
2 changes: 1 addition & 1 deletion compiler_base/3rdparty/rustc_span/Cargo.toml
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"
Expand Down
4 changes: 3 additions & 1 deletion compiler_base/Cargo.toml
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"
Expand All @@ -23,4 +23,6 @@ members = [
"error",
"parallel",
"3rdparty/rustc_errors",
"3rdparty/rustc_data_structures",
"3rdparty/rustc_span",
]
10 changes: 5 additions & 5 deletions compiler_base/error/Cargo.toml
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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion compiler_base/macros/Cargo.toml
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"
Expand Down
2 changes: 1 addition & 1 deletion compiler_base/parallel/Cargo.toml
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"
Expand Down
6 changes: 3 additions & 3 deletions compiler_base/session/Cargo.toml
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"
Expand All @@ -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"
4 changes: 2 additions & 2 deletions compiler_base/span/Cargo.toml
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"
Expand All @@ -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"
Loading

0 comments on commit 41ec29b

Please sign in to comment.