diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..efd5b75 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "parseq" +version = "0.1.0" +authors = ["Stefan Kreutz <mail@skreutz.com>"] +edition = "2021" +description = "Parallel sequential iterator" +readme = "README.md" +repository = "https://git.skreutz.com/parseq-rs.git" +license = "MIT OR Apache-2.0" +keywords = ["parallel", "sequential", "ordered", "iterator"] +categories = ["concurrency"] +publish = true + +[dependencies] +crossbeam-channel = "0.5.6" + +[dev-dependencies] +ntest = "0.9.0" |