Skip to content

Commit 70ab286

Browse files
committed
chore: remove the package.authors field
It has been effectively soft-deprecated (<rust-lang/rust#83227>).
1 parent f0d98f5 commit 70ab286

File tree

21 files changed

+0
-27
lines changed

21 files changed

+0
-27
lines changed

examples/basic/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_example_basic"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
publish = false
76

examples/basic_gr_peach/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "basic_gr_peach"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
publish = false
76

examples/basic_nucleo_f401re/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_example_basic_nucleo_f401re"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
publish = false
76

examples/basic_rp_pico/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_example_basic_rp_pico"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
publish = false
76

examples/basic_wio_terminal/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_example_basic_wio_terminal"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
publish = false
76

examples/smp_rp_pico/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_example_smp_rp_pico"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
publish = false
76

src/arm_semihosting/Cargo.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
[package]
22
name = "arm_semihosting"
33
version = "0.0.0"
4-
authors = [
5-
6-
7-
# The authors of `cortex-m-semihosting`
8-
"The Cortex-M Team <[email protected]>",
9-
"Jorge Aparicio <[email protected]>",
10-
]
114
edition = "2021"
125
publish = false
136

src/r3/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3"
33
version = "0.1.3"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
readme = "README.md"

src/r3_kernel/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_kernel"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
description = "An RTOS kernel implementing the R3 API"

src/r3_port_arm/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_port_arm"
33
version = "0.1.2"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
description = "Arm-A port for R3"

src/r3_port_arm_m/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_port_arm_m"
33
version = "0.2.1"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
description = "Cortex-M port for R3"

src/r3_port_arm_m_test_driver/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_port_arm_m_test_driver"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
publish = false

src/r3_port_arm_test_driver/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_port_arm_test_driver"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
publish = false

src/r3_port_riscv/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_port_riscv"
33
version = "0.1.3"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
description = "RISC-V port for R3"

src/r3_port_riscv_test_driver/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_port_riscv_test_driver"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
publish = false

src/r3_port_std/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_port_std"
33
version = "0.1.3"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
description = "Simulation environment for running R3 on a hosted environment"

src/r3_portkit/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_portkit"
33
version = "0.1.3"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
description = "Utilities for writing a port of R3"

src/r3_support_rp2040/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_support_rp2040"
33
version = "0.1.1"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
description = "Supporting package for running R3 on RP2040"

src/r3_support_rza1/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_support_rza1"
33
version = "0.1.2"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
description = "Supporting package for running R3 on Renesas RZ/A1"

src/r3_test_runner/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_test_runner"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
publish = false

src/r3_test_suite/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[package]
22
name = "r3_test_suite"
33
version = "0.0.0"
4-
authors = ["yvt <[email protected]>"]
54
edition = "2021"
65
license = "MIT OR Apache-2.0"
76
categories = ["embedded", "no-std", "development-tools::testing"]

0 commit comments

Comments
 (0)