Skip to content

Commit c87a212

Browse files
Merge pull request #9 from rust-embedded/rename-crate
Renamed cortex-r to cortex-ar
2 parents 016cdf9 + 35c0ab0 commit c87a212

File tree

259 files changed

+121
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

259 files changed

+121
-62
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-24.04
3737
strategy:
3838
matrix:
39-
rust: [stable, 1.82]
39+
rust: [stable, 1.59]
4040
steps:
4141
- name: Checkout
4242
uses: actions/checkout@v4
@@ -231,7 +231,7 @@ jobs:
231231
rustup default stable
232232
- name: Run cargo test
233233
run: |
234-
cargo test --manifest-path cortex-r/Cargo.toml
234+
cargo test --manifest-path cortex-ar/Cargo.toml
235235
236236
# Run some programs in QEMU
237237
qemu-test:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ exclude = [
33
"arm-targets",
44
]
55
members = [
6-
"cortex-r",
6+
"cortex-ar",
77
"cortex-r-examples",
88
"cortex-r-rt",
99
]

LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Copyright (c) The Cortex-R Crate Developers
21
Copyright (c) Ferrous Systems
2+
Copyright (c) The Rust Embedded Devices Working Group developers
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy
55
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 10 additions & 5 deletions

arm-targets/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[package]
2-
authors = ["Jonathan Pallant <jonathan.pallant@ferrous-systems.com>", "The Cortex-R Team <cortex-r@teams.rust-embedded.org>"]
2+
authors = [
3+
"Jonathan Pallant <jonathan.pallant@ferrous-systems.com>",
4+
"The Cortex-R Team <cortex-r@teams.rust-embedded.org>"
5+
]
6+
categories = ["development-tools::build-utils"]
37
description = "Compile-time feature detection for Arm processors"
48
edition = "2021"
59
license = "MIT OR Apache-2.0"
610
name = "arm-targets"
711
readme = "README.md"
812
repository = "https://github.com/rust-embedded/cortex-r.git"
9-
rust-version = "1.82"
13+
rust-version = "1.59"
1014
version = "0.1.0"
1115

1216
[dependencies]

cortex-r/Cargo.toml renamed to cortex-ar/Cargo.toml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11
[package]
2-
authors = ["Jonathan Pallant <jonathan.pallant@ferrous-systems.com>", "The Cortex-R Team <cortex-r@teams.rust-embedded.org>"]
3-
description = "CPU support for Arm Cortex-R"
2+
authors = [
3+
"Jonathan Pallant <jonathan.pallant@ferrous-systems.com>",
4+
"The Cortex-R Team <cortex-r@teams.rust-embedded.org>",
5+
]
6+
categories = [
7+
"embedded",
8+
"no-std",
9+
]
10+
description = "CPU support for AArch32 Arm Cortex-R and Arm Cortex-A"
411
edition = "2021"
12+
keywords = [
13+
"arm",
14+
"cortex-a",
15+
"cortex-r",
16+
"embedded",
17+
"no_std",
18+
"no-std",
19+
]
520
license = "MIT OR Apache-2.0"
6-
name = "cortex-r"
21+
name = "cortex-ar"
722
readme = "README.md"
823
repository = "https://github.com/rust-embedded/cortex-r.git"
924
rust-version = "1.82"

cortex-ar/README.md

Lines changed: 39 additions & 0 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)