Skip to content

Commit 9a9479f

Browse files
authored
Unrolled build for rust-lang#116906
Rollup merge of rust-lang#116906 - compiler-errors:version-0, r=oli-obk Use v0.0.0 in compiler crates I may be totally off base here, but my understanding is that it's conventional to use v0.0.0 to reflect the unversioned nature of the compiler crates. Fix that for some of the compiler crates that were created recently.
2 parents 3fbcfd2 + 60c9544 commit 9a9479f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Cargo.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -3839,7 +3839,7 @@ dependencies = [
38393839

38403840
[[package]]
38413841
name = "rustc_fluent_macro"
3842-
version = "0.1.0"
3842+
version = "0.0.0"
38433843
dependencies = [
38443844
"annotate-snippets",
38453845
"fluent-bundle",
@@ -3915,7 +3915,7 @@ dependencies = [
39153915

39163916
[[package]]
39173917
name = "rustc_hir_typeck"
3918-
version = "0.1.0"
3918+
version = "0.0.0"
39193919
dependencies = [
39203920
"rustc_ast",
39213921
"rustc_attr",
@@ -4043,7 +4043,7 @@ dependencies = [
40434043

40444044
[[package]]
40454045
name = "rustc_lexer"
4046-
version = "0.1.0"
4046+
version = "0.0.0"
40474047
dependencies = [
40484048
"expect-test",
40494049
"unicode-properties",
@@ -4112,7 +4112,7 @@ dependencies = [
41124112

41134113
[[package]]
41144114
name = "rustc_macros"
4115-
version = "0.1.0"
4115+
version = "0.0.0"
41164116
dependencies = [
41174117
"proc-macro2",
41184118
"quote",
@@ -4595,7 +4595,7 @@ dependencies = [
45954595

45964596
[[package]]
45974597
name = "rustc_transmute"
4598-
version = "0.1.0"
4598+
version = "0.0.0"
45994599
dependencies = [
46004600
"itertools",
46014601
"rustc_data_structures",

compiler/rustc_fluent_macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_fluent_macro"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2021"
55

66
[lib]

compiler/rustc_hir_typeck/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_hir_typeck"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

compiler/rustc_lexer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_lexer"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
license = "MIT OR Apache-2.0"
55
edition = "2021"
66

compiler/rustc_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_macros"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2021"
55

66
[lib]

compiler/rustc_transmute/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_transmute"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)