Fixes #15. As documented in the issue, building the project in its current form will fail for some users (cargo's caching allows some of us to build). This is due to a now invalid commit hash being referenced in Cargo.lock.
Previously we were using commit f8c26aa4 from the build branch of svd-parser, but that doesn't seem to exist in the tree anymore. 1b5234d4 is quite similar (it looks like there was a rebase or something) so that can be used instead with only one small adjustment, which I have addressed.
Fixes #15. As documented in the issue, building the project in its current form will fail for some users (
cargo
's caching allows some of us to build). This is due to a now invalid commit hash being referenced inCargo.lock
.Previously we were using commit
f8c26aa4
from thebuild
branch ofsvd-parser
, but that doesn't seem to exist in the tree anymore.1b5234d4
is quite similar (it looks like there was a rebase or something) so that can be used instead with only one small adjustment, which I have addressed.