nautilus_tardis/lib.rs
1// -------------------------------------------------------------------------------------------------
2// Copyright (C) 2015-2026 Nautech Systems Pty Ltd. All rights reserved.
3// https://nautechsystems.io
4//
5// Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
6// You may not use this file except in compliance with the License.
7// You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14// -------------------------------------------------------------------------------------------------
15
16//! [NautilusTrader](https://nautilustrader.io) adapter for [Tardis](https://tardis.dev).
17//!
18//! The `nautilus-tardis` crate provides integration with the Tardis API for accessing
19//! normalized historical and real-time market data across multiple exchanges.
20//!
21//! # NautilusTrader
22//!
23//! [NautilusTrader](https://nautilustrader.io) is an open-source, production-grade, Rust-native
24//! engine for multi-asset, multi-venue trading systems.
25//!
26//! The system spans research, deterministic simulation, and live execution within a single
27//! event-driven architecture, providing research-to-live semantic parity.
28//!
29//! # Feature Flags
30//!
31//! This crate provides feature flags to control source code inclusion during compilation,
32//! depending on the intended use case, i.e. whether to provide Python bindings
33//! for the [nautilus_trader](https://pypi.org/project/nautilus_trader) Python package,
34//! or as part of a Rust only build.
35//!
36//! - `replay` (default): Enables market data replay functionality.
37//! - `python`: Enables Python bindings from [PyO3](https://pyo3.rs).
38//! - `extension-module`: Builds as a Python extension module.
39//!
40//! [High-precision mode](https://nautilustrader.io/docs/nightly/getting_started/installation#precision-mode) (128-bit value types) is enabled by default.
41
42#![warn(rustc::all)]
43#![deny(unsafe_code)]
44#![deny(nonstandard_style)]
45#![deny(missing_debug_implementations)]
46#![deny(clippy::missing_errors_doc)]
47#![deny(clippy::missing_panics_doc)]
48#![deny(rustdoc::broken_intra_doc_links)]
49
50pub mod common;
51pub mod config;
52pub mod csv;
53pub mod data;
54pub mod factories;
55pub mod http;
56pub mod machine;
57
58#[cfg(feature = "replay")]
59pub mod replay;
60
61#[cfg(feature = "python")]
62pub mod python;