We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 23d5a43 + e99e618 commit 4680d8dCopy full SHA for 4680d8d
svd-parser/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
8
## Unreleased
9
10
+- Correctly place `expand_properties` under `expand` feature
11
+
12
## [v0.14.2] - 2023-09-17
13
14
- Bump MSRV to 1.58.0
svd-parser/src/lib.rs
@@ -44,6 +44,7 @@ pub struct Config {
44
/// Expand arrays and resolve derivedFrom
45
// TODO: split it on several independent options
46
pub expand: bool,
47
+ #[cfg(feature = "expand")]
48
/// Derive register properties from parents
49
pub expand_properties: bool,
50
/// Skip parsing and emitting `enumeratedValues` and `writeConstraint` in `Field`
0 commit comments