wmjtyd_libstock/
lib.rs

1//! wmjtyd-libstock - utilities for operating stocks
2//!
3//! The utilities for operating stocks. For example:
4//!
5//! - Using methods under [`mod@data`], you can operate with orderbooks,
6//!   orders and trades.
7//! - Using methods under [`mod@file`], you can operate with files
8//!   and create a daemon to write files with the well-defined format
9//!   to the well-defined directory.
10//! - Using methods under [`mod@flag`] to use thread-safe, lock-free flags.
11//!
12//! These utilities are especial for [wmjtyd/crypto-market](https://github.com/wmjtyd/crypto-market);
13//! however, you can also use it in your project. We licensed it under `Apache-2.0`, the same
14//! license to `crypto-market`! 😄
15//!
16//! ## License
17//!
18//! Apache-2.0
19
20pub mod data;
21pub mod file;
22pub mod flag;