From 974d0b43bd8aaa95ee4221e83467195883dd5e38 Mon Sep 17 00:00:00 2001 From: Remco Bloemen Date: Thu, 10 Mar 2022 15:32:59 -0800 Subject: [PATCH] Make doctest pass --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 9d6ecf2..de0ddad 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,11 @@ Rust support library for Semaphore ## Example ```rust +use semaphore::{ + identity::Identity, hash::Hash, poseidon_tree::PoseidonTree, + protocol::* }; +use num_bigint::BigInt; + // generate identity let id = Identity::new(b"hello");