Skip to main content

nautilus_derive/
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
17//! [Derive](https://www.derive.xyz).
18//!
19//! The `nautilus-derive` crate provides integration with the Derive self-custodial onchain
20//! options, perpetuals, and spot exchange. Authentication uses an EVM smart-contract wallet
21//! on the Derive Chain together with a session-key signer; orders are EIP-712 typed-data
22//! signed against the venue's per-action module contracts.
23//!
24//! # NautilusTrader
25//!
26//! [NautilusTrader](https://nautilustrader.io) is an open-source, production-grade, Rust-native
27//! engine for multi-asset, multi-venue trading systems.
28//!
29//! The system spans research, deterministic simulation, and live execution within a single
30//! event-driven architecture, providing research-to-live semantic parity.
31//!
32//! # Feature Flags
33//!
34//! This crate provides feature flags to control source code inclusion during compilation,
35//! depending on the intended use case, i.e. whether to provide Python bindings
36//! for the [nautilus_trader](https://pypi.org/project/nautilus_trader) Python package,
37//! or as part of a Rust only build.
38//!
39//! - `examples`: Enables the crate's example binaries.
40//! - `extension-module`: Builds as a Python extension module.
41//! - `fuzz`: Enables libFuzzer integration for fuzz targets.
42//! - `high-precision` (default): Enables
43//!   [high-precision mode](https://nautilustrader.io/docs/nightly/getting_started/installation/#precision-mode)
44//!   to use 128-bit value types.
45//! - `python`: Enables Python bindings from [PyO3](https://pyo3.rs).
46
47#![warn(rustc::all)]
48#![deny(unsafe_code)]
49#![deny(nonstandard_style)]
50#![deny(missing_debug_implementations)]
51#![deny(clippy::missing_panics_doc)]
52#![deny(rustdoc::broken_intra_doc_links)]
53// pyo3's `from_py_object` generates `.clone()` on `Copy` fields that clippy flags from the
54// macro expansion; an item-level `allow` cannot reach the expansion
55#![allow(clippy::clone_on_copy)]
56
57pub mod common;
58pub mod config;
59pub mod data;
60pub mod execution;
61pub mod factories;
62pub mod http;
63pub mod providers;
64pub mod signing;
65pub mod websocket;
66
67#[cfg(feature = "python")]
68pub mod python;
69
70pub use crate::{
71    config::{DeriveDataClientConfig, DeriveExecutionClientConfig},
72    execution::DeriveExecutionClient,
73    factories::{DeriveDataClientFactory, DeriveExecutionClientFactory},
74};