Index: benchmark/Cargo.toml.in
===================================================================
--- benchmark/Cargo.toml.in	(revision 49ce636652362da1d31dc2b47d57ed426e0d1a5a)
+++ benchmark/Cargo.toml.in	(revision 49ce636652362da1d31dc2b47d57ed426e0d1a5a)
@@ -0,0 +1,25 @@
+[package]
+name = "cforall-rust-bench"
+version = "@VERSION@"
+authors = ["Cforall"]
+edition = "2018"
+
+[[bin]]
+name = "cycle-tokio"
+path = "@abs_srcdir@/readyQ/cycle.rs"
+
+[[bin]]
+name = "locality-tokio"
+path = "@abs_srcdir@/readyQ/locality.rs"
+
+[features]
+sync = ["tokio/sync"]
+time = ["tokio/time"]
+
+[dependencies]
+clap = "2.33"
+isatty = "0.1"
+num-format = "0.4.0"
+rand = "*"
+tokio = { version = "0.3.0", features = ["full"] }
+
Index: benchmark/Makefile.am
===================================================================
--- benchmark/Makefile.am	(revision 720b1a9b342a561b80e3daa9819bfd733d489435)
+++ benchmark/Makefile.am	(revision 49ce636652362da1d31dc2b47d57ed426e0d1a5a)
@@ -522,2 +522,8 @@
 size-cfa$(EXEEXT):
 	$(BENCH_V_CFA)$(CFACOMPILE) $(srcdir)/size/size.cfa
+
+## =========================================================================================================
+
+%-tokio$(EXEEXT): $(srcdir)/readyQ/%.rs
+	cd $(builddir) && cargo build --release
+	cp $(builddir)/target/release/$(basename $@) $@
