artifacts-rs 1.5.1

Rust client for Artifacts
Documentation
//! A Rust wrapper for [Artifacts](https://artifactsmmo.com/), an API-based sandbox MMO.
//! 
//! Generated by [openapi-generator](https://openapi-generator.tech/) based on
//! {{#version}}version {{{.}}} of{{/version}} the [public OpenAPI spec](https://api.artifactsmmo.com/openapi.json).

#![allow(unused_imports)]
#![allow(clippy::too_many_arguments)]

extern crate serde;
extern crate serde_json;
extern crate url;
{{#hyper}}
extern crate hyper;
extern crate futures;
{{/hyper}}
{{#reqwest}}
extern crate reqwest;
{{/reqwest}}

pub mod apis;
pub mod models;
pub mod traits;