altcha-lib-rs-0.1.0 has been yanked.
Community ALTCHA Rust Library 
Community implementation of the ALTCHA library in Rust for your own server applications to create and validate challenges and responses.
For more information about ALTCHA https://altcha.org/docs
Setup
[]
= { = "0", = ["json"] }
Example
use ;
// create a challenge
let challenge = create_challenge.expect;
// transmit the challenge to the client and let the clint solve it
let res = solve_challenge
.expect;
// pack the solution into a json string
let payload = Payload ;
let string_payload = to_string.unwrap;
// receive the solution from the client and verify it
verify_json_solution.expect;