Skip to content

Commit

Permalink
add dsf crate
Browse files Browse the repository at this point in the history
  • Loading branch information
aiju committed Oct 29, 2024
1 parent 8a42e72 commit e66f420
Show file tree
Hide file tree
Showing 10 changed files with 856 additions and 1 deletion.
34 changes: 34 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ members = [
"imctk",
"lit",
"stable_set",
"dsf",

# comment to force multi-line layout
]
Expand Down
20 changes: 20 additions & 0 deletions dsf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "dsf"
version = "0.1.0"
edition = "2021"

publish = false

[dependencies]
imctk-ids = { version = "0.1.0", path = "../ids" }
imctk-lit = { version = "0.1.0", path = "../lit" }
bytemuck = "*"
atomic = "0.6"
priority-queue = "*"

[dev-dependencies]
rand = "*"
rand_pcg = "*"

[lints]
workspace = true
2 changes: 2 additions & 0 deletions dsf/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pub mod union_find;
pub mod tracked_union_find;
Loading

0 comments on commit e66f420

Please sign in to comment.