Skip to content

Commit

Permalink
Fixes for knyst_core removal
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikNatanael committed Nov 4, 2023
1 parent fc70446 commit f8ce8d8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]
members = ["knyst", "knyst_macro", "knyst_core"]
members = ["knyst", "knyst_macro"]
resolver = "2"
1 change: 0 additions & 1 deletion knyst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ default = ["cpal", "jack"]
unstable = []

[dependencies]
# knyst_core = { path = "../knyst_core" }
knyst_macro = { path = "../knyst_macro" }
slotmap = "1.0"
# For ergonomic error handling
Expand Down
2 changes: 1 addition & 1 deletion knyst/benches/micro_benchmarks.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use std::f32::consts::{PI, TAU};

use crate::wavetable::{PhaseF32, WavetablePhase, FRACTIONAL_PART};
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use fundsp::wavetable;
use knyst::envelope::{Curve, Envelope};
use knyst::prelude::*;
use knyst::wavetable::{PhaseF32, WavetablePhase, FRACTIONAL_PART};

// Test if integer phase is in fact faster than floating point phase
pub fn phase_float_or_uint(c: &mut Criterion) {
Expand Down

0 comments on commit f8ce8d8

Please sign in to comment.