Skip to content

Commit dea44f5

Browse files
committed
more bagdes
1 parent 222be1f commit dea44f5

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
- os: ubuntu-latest
1616
target: x86_64-unknown-linux-gnu
1717
suffix: ".gz"
18+
- os: ubuntu-latest
19+
target: aarch64-unknown-linux-gnu
20+
suffix: ".gz"
1821
- os: macos-latest
1922
target: x86_64-apple-darwin
2023
suffix: ".gz"

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
- Add `aarch64` target for releases, more readme badges
1011
- Fix when `atomics` features is generated but not enabled
1112
- move hidden structs into module, add register reader/writer links into `SPEC` docs (#736)
1213
- removed register writer & reader wrappers, generic `REG` in field writers (#731)

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ yaml = ["dep:serde_yaml"]
4444

4545
[dependencies]
4646
clap = { version = "4.0", optional = true }
47-
irx-config = { version = "3.1", features = ["cmd", "toml-parser"], optional = true }
47+
irx-config = { version = "3.3", features = ["cmd", "toml-parser"], optional = true }
4848
env_logger = { version = "0.10", optional = true }
4949
inflections = "1.1"
5050
log = { version = "~0.4", features = ["std"] }
@@ -55,7 +55,7 @@ thiserror = "1.0"
5555
serde = { version = "1.0", optional = true }
5656
serde_json = { version = "1.0.85", optional = true }
5757
serde_yaml = { version = "0.9.11", optional = true }
58-
regex = "1.7.0"
58+
regex = "1.9.0"
5959
html-escape = "0.2"
6060

6161
[dependencies.svd-parser]

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
[![crates.io](https://img.shields.io/crates/d/svd2rust.svg)](https://crates.io/crates/svd2rust)
1+
![GitHub top language](https://img.shields.io/github/languages/top/rust-embedded/svd2rust)
2+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.65+-blue.svg)
23
[![crates.io](https://img.shields.io/crates/v/svd2rust.svg)](https://crates.io/crates/svd2rust)
4+
[![crates.io](https://img.shields.io/crates/d/svd2rust.svg)](https://crates.io/crates/svd2rust)
5+
[![Released API docs](https://docs.rs/svd2rust/badge.svg)](https://docs.rs/svd2rust)
6+
![Crates.io](https://img.shields.io/crates/l/svd2rust)
7+
[![dependency status](https://deps.rs/repo/github/rust-embedded/svd2rust/status.svg)](https://deps.rs/repo/github/rust-embedded/svd2rust)
8+
[![Continuous integration](https://github.com/rust-embedded/svd2rust/workflows/Continuous%20integration/badge.svg)](https://github.com/rust-embedded/svd2rust)
39

410
# `svd2rust`
511

@@ -9,8 +15,6 @@ This project is developed and maintained by the [Tools team][team].
915

1016
# [Documentation](https://docs.rs/svd2rust)
1117

12-
# [API](https://docs.rs/svd2rust)
13-
1418
## Minimum Supported Rust Version (MSRV)
1519

1620
The **generated code** is guaranteed to compile on stable Rust 1.65.0 and up.

0 commit comments

Comments
 (0)