diff options
author | Stefan Kreutz <mail@skreutz.com> | 2022-12-18 21:30:46 +0100 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2022-12-18 21:30:46 +0100 |
commit | f2181e1c8d55d4da0e298685f7805ae0c17cf6ae (patch) | |
tree | 5f5d61e83397d435f30a572404e21f8d400ac481 /Cargo.toml | |
download | parseq-17de60bcea159079ef19441672851fd08a328aa9.tar |
Add initial implementationparseq-0.1.0
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" |