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 $@) $@
Index: configure.ac
===================================================================
--- configure.ac	(revision 720b1a9b342a561b80e3daa9819bfd733d489435)
+++ configure.ac	(revision 49ce636652362da1d31dc2b47d57ed426e0d1a5a)
@@ -295,6 +295,6 @@
 # Some of our makefile don't need to be distributed
 AM_CONDITIONAL([CFORALL_DISTRIBUTE], [test -e $TOP_SRCDIR/autogen.sh])
-AM_COND_IF([CFORALL_DISTRIBUTE],
-	[AC_CONFIG_FILES([
+AM_COND_IF([CFORALL_DISTRIBUTE], [
+	AC_CONFIG_FILES([
 		longrun_tests/Makefile
 		benchmark/Makefile
@@ -302,5 +302,8 @@
 		tools/Makefile
 		tools/prettyprinter/Makefile
-		])])
+	])
+
+	AC_OUTPUT(benchmark/Cargo.toml)
+])
 
 AC_CONFIG_LINKS([tests/test.py:tests/test.py])
