Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ahicks92 committed Nov 12, 2023
1 parent fd29e8a commit a17f885
Show file tree
Hide file tree
Showing 8 changed files with 727 additions and 4 deletions.
30 changes: 30 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ arc-swap = "1.6.0"
arrayvec = "0.7.2"
atomic_refcell = "0.1.9"
audio_synchronization = { path = "crates/audio_synchronization" }
bytemuck = "1.14.0"
cc = "1.0.79"
convert_case = "0.6.0"
criterion = "0.4.0"
crossbeam = "0.8.2"
dashmap = "5.5.3"
darling = "0.20.3"
derivative = "2.2.0"
derive_more = "0.99.17"
Expand All @@ -36,6 +38,7 @@ prost-build = "0.11.2"
quote = "1.0.21"
rand = "0.8.5"
rand_xoshiro = "0.6.0"
reciprocal = "0.1.2"
sharded-slab = "0.1.4"
smallvec = "1.10.0"
supermatch = { path = "crates/supermatch" }
Expand Down
9 changes: 6 additions & 3 deletions crates/audio_synchronization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ name = "audio_synchronization"
version = "0.1.0"
edition = "2021"

[dependencies]
arc-swap.workspace = true
bytemuck.workspace = true
crossbeam.workspace = true
reciprocal.workspace = true

[dev-dependencies]
eye_dropper.workspace = true
pretty_assertions.workspace = true
proptest.workspace = true

[dependencies]
arc-swap.workspace = true

[target.'cfg(loom)'.dependencies]
loom.workspace = true
1 change: 1 addition & 0 deletions crates/audio_synchronization/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ pub mod fixed_size_pool;
pub mod generational_atomic;
pub mod optional_atomic_u32;
pub mod prepend_only_list;
pub mod spsc_ring;
mod sync;
Loading

0 comments on commit a17f885

Please sign in to comment.