square_ox/
lib.rs

1//! This crate provides a high level wraper around the [Square API](https://developer.squareup.com).
2//!
3//! Currently in an alpha stage this crate is maintained by [Cybersaur](https://www.cybersaur.io/)
4//! as an Open Source Project, aimed to promote the use of Rust.
5//!
6//! # Usage This crate can be used by added it as a dependency in your
7//! projects `Cargo.toml`.
8//! ```toml
9//! [dependencies]
10//! square-ox = "0.1.0"
11//! ```
12//! # Examples
13//! For examples of how this library can be used, see the `examples` directory in the repository.
14//! The examples are a work in progress, although the `payments_api` example provides a good use case.
15//! It can be run with `cargo run --example payments_api`.
16
17#![deny(clippy::all)]
18
19pub mod client;
20pub mod api;
21pub mod errors;
22pub mod response;
23pub mod objects;
24pub mod builder;