Stripe library for rust.
Note: Everything is subject to change but everything should be stable to use.
```rust extern crate libstripe; extern crate serde;
use libstripe::Stripe;
fn main() { let stripe = Stripe::new("sktestBQokikJOvBiI2HlWgH4olfQ2");
let customer = match stripe.customer().create(json!({
"description": "Example description",
"email": "example@example.com",
"source": "tok_amex"
})) {
Ok(cust) => cust,
Err(e) => panic!("{}", e)
};
println!("{:?}", customer);
} ```