Skip to content

Commit

Permalink
Merge pull request RustAudio#146 from fwcd/master
Browse files Browse the repository at this point in the history
Update 'sample' to 0.10.0 and use 'dyn' keyword
  • Loading branch information
mitchmindtree authored Sep 9, 2019
2 parents ddb0d4c + 55bf965 commit f8a355b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ path = "./src/lib.rs"

[dependencies]
daggy = "0.4.0"
sample = "0.6.0"
sample = "0.10.0"

[dev-dependencies]
portaudio = "0.6.4"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub use graph::{
};
pub use node::Node;
pub use sample::{
self, conv, rate, signal, slice, Duplex as DuplexSample, Frame, FromSample, Sample, Signal, ToSample,
self, conv, interpolate, signal, slice, Duplex as DuplexSample, Frame, FromSample, Sample, Signal, ToSample,
};

mod graph;
Expand Down
2 changes: 1 addition & 1 deletion src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ where
}
}

impl<F> Node<F> for Box<Node<F>>
impl<F> Node<F> for Box<dyn Node<F>>
where
F: Frame,
{
Expand Down

0 comments on commit f8a355b

Please sign in to comment.