zk_database 0.1.0

A library that enables ZKP to NoSQL databases.
Documentation

#[cfg(test)]
mod test {
    use zk_database::client::*;
    use mongodb::bson::doc;
    
    #[test]
    fn merkle_verify_path() {
        set_uri("mongodb://95.217.230.244:27017/");
        set_database_name("DB1");
        set_collection_name("Col1");
        set_record_number(100);
        insert_random_records().unwrap();
        set_query(doc! {"name": "cthgtubdoi"});
        read_query().unwrap();
        let result = verify_path().unwrap();
        
        assert!(result);
    } 
}