spacetraders 0.1.0-alpha.6

An API wrapper for https://spacetraders.io
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This crate is an api wrapper around the popular [SpaceTraders] API game of the same name.
//!
//! The goal is to wrap all available endpoints in strongly typed requests and responses that
//! we expect from rust.
//!
//! [SpaceTraders]: https://spacetraders.io/
#![warn(missing_docs)]

pub mod client;
pub mod shared;
pub mod responses;
pub mod requests;
pub mod errors;