Bump to v2.0.0
diff --git a/examples/block.rs b/examples/block.rs
index e4124b2..dea10be 100644
--- a/examples/block.rs
+++ b/examples/block.rs
@@ -12,7 +12,7 @@
 /// Runs a future to completion on the current thread.
 fn block_on<F: Future>(future: F) -> F::Output {
     // Pin the future on the stack.
-    pin_utils::pin_mut!(future);
+    futures::pin_mut!(future);
 
     thread_local! {
         // Parker and waker associated with the current thread.