Skip to content

Commit 0894ead

Browse files
committed
expand & ignore_enums
1 parent 6473922 commit 0894ead

File tree

5 files changed

+448
-12
lines changed

5 files changed

+448
-12
lines changed

svd-parser/CHANGELOG.md

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

88
## Unreleased
99

10+
- Add `expand` (under `expand` feature) and `ignore_enums` options
11+
1012
## [v0.13.1] - 2022-01-04
1113

1214
- Make `version`, `description`, `width` and `address_unit_bits` on `Device` optional again

svd-parser/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,18 @@ readme = "README.md"
1515

1616
[features]
1717
derive-from = ["svd-rs/derive-from"]
18+
expand = ["derive-from"]
1819

1920
[dependencies]
20-
svd-rs = { version = "0.13.1", path = "../svd-rs"}
21+
svd-rs = { version = "0.13.2", path = "../svd-rs"}
2122
roxmltree = "0.14.1"
2223
anyhow = "1.0.45"
2324
thiserror = "1.0.30"
2425

2526
[dev-dependencies]
2627
serde_json = { version = "1.0", features = ["preserve_order"] }
2728
serde_yaml = "0.8.23"
28-
svd-rs = { version = "0.13.1", path = "../svd-rs", features = ["serde"] }
29+
svd-rs = { version = "0.13.2", path = "../svd-rs", features = ["serde"] }
2930

3031
[[example]]
3132
name = "svd2json"

0 commit comments

Comments
 (0)