From f2181e1c8d55d4da0e298685f7805ae0c17cf6ae Mon Sep 17 00:00:00 2001 From: Stefan Kreutz Date: Sun, 18 Dec 2022 21:30:46 +0100 Subject: Add initial implementation --- Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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 "] +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" -- cgit v1.2.3