Skip to content

Commit a616f31

Browse files
committed
Rename to cortex-m-types
1 parent 5ad7155 commit a616f31

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Run tests
3030
if: ${{ matrix.rust != '1.61.0' }}
3131
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --features cortex-m/critical-section-single-core
32-
- name: Run tests for 1.61.0 (need to exclude cortex-m-pac)
32+
- name: Run tests for 1.61.0 (need to exclude cortex-m-types)
3333
if: ${{ matrix.rust == '1.61.0' }}
34-
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --exclude cortex-m-pac --features cortex-m/critical-section-single-core
34+
run: cargo test --all --exclude cortex-m-rt --exclude testsuite --exclude cortex-m-types --features cortex-m/critical-section-single-core

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
resolver = "2"
33
members = [
44
"cortex-m",
5-
"cortex-m-pac",
5+
"cortex-m-types",
66
"cortex-m-rt",
77
"cortex-m-semihosting",
88
"panic-itm",
File renamed without changes.

cortex-m-pac/Cargo.toml renamed to cortex-m-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
2-
name = "cortex-m-pac"
2+
name = "cortex-m-types"
33
version = "0.1.0"
44
edition = "2021"
55
rust-version = "1.81"
66
repository = "https://github.com/rust-embedded/cortex-m"
77
authors = ["The Cortex-M Team <[email protected]>",]
88
categories = ["embedded", "hardware-support", "no-std"]
99
description = "Low level access to Cortex-M processors"
10-
documentation = "https://docs.rs/cortex-m-pac"
10+
documentation = "https://docs.rs/cortex-m-types"
1111
keywords = ["arm", "cortex-m", "register", "peripheral"]
1212
license = "MIT OR Apache-2.0"
1313
readme = "README.md"

cortex-m-pac/README.md renamed to cortex-m-types/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
[![crates.io](https://img.shields.io/crates/d/cortex-m-pac.svg)](https://crates.io/crates/cortex-m-pac)
2-
[![crates.io](https://img.shields.io/crates/v/cortex-m-pac.svg)](https://crates.io/crates/cortex-m-pac)
1+
[![crates.io](https://img.shields.io/crates/d/cortex-m-types.svg)](https://crates.io/crates/cortex-m-types)
2+
[![crates.io](https://img.shields.io/crates/v/cortex-m-types.svg)](https://crates.io/crates/cortex-m-types)
33

4-
# `cortex-m-pac`
4+
# `cortex-m-types`
55

66
> Target-specific traits to be implemented by PACs
77
8-
This project is developed and maintained by the [Cortex-M team][team].
8+
This project is developed and maintained by the [Arm team][team].
99

10-
## [Documentation](https://docs.rs/crate/cortex-m-pac)
10+
## [Documentation](https://docs.rs/crate/cortex-m-types)
1111

1212
## Minimum Supported Rust Version (MSRV)
1313

@@ -33,7 +33,7 @@ THIS SOFTWARE.
3333
## Code of Conduct
3434

3535
Contribution to this crate is organized under the terms of the [Rust Code of
36-
Conduct][CoC], the maintainer of this crate, the [Cortex-M team][team], promises
36+
Conduct][CoC], the maintainer of this crate, the [Arm team][team], promises
3737
to intervene to uphold that code of conduct.
3838

3939
[CoC]: CODE_OF_CONDUCT.md
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)