-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move iir to new dsp crate #174
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple small cleanups.
.gitignore
Outdated
@@ -1,2 +1,2 @@ | |||
/target | |||
**/target |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed here and yet. And it is a bit broad.
Cargo.toml
Outdated
@@ -40,6 +40,7 @@ embedded-hal = "0.2.4" | |||
nb = "1.0.0" | |||
asm-delay = "0.9.0" | |||
enum-iterator = "0.6.0" | |||
dsp = { path = "dsp", version = "0.1.0" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need for version.
dsp/Cargo.toml
Outdated
authors = ["Robert Jördens <rj@quartiq.de>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove boilerplate.
bors merge |
Build succeeded: |
As mentioned here.