nautilus_tardis/
lib.rs

1// -------------------------------------------------------------------------------------------------
2//  Copyright (C) 2015-2025 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//! The [Tardis](https://tardis.dev) integration adapter.
17
18#![warn(rustc::all)]
19#![deny(unsafe_code)]
20#![deny(nonstandard_style)]
21#![deny(missing_debug_implementations)]
22#![deny(rustdoc::broken_intra_doc_links)]
23// #![deny(clippy::missing_errors_doc)]
24
25// TODO: We still rely on `IntoPy` for now, so temporarily ignore
26// these deprecations until fully migrated to `IntoPyObject`.
27#![allow(deprecated)]
28
29pub mod config;
30pub mod csv;
31pub mod enums;
32pub mod http;
33pub mod machine;
34pub mod parse;
35pub mod replay;
36
37#[cfg(feature = "python")]
38pub mod python;
39
40#[cfg(test)]
41pub mod tests;