You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like there are L3-unstable imports in backtest/mod.rs without the feature flag enabled.
py-hftbacktest$ maturin build
results in;
error: could not compile hftbacktest (lib) due to 1 previous error; 4 warnings emitted 💥 maturin failed Caused by: Failed to build a native library through cargo
The reported error is;
error[E0432]: unresolved imports *crate::backtest::models::L3QueueModel*, *crate::backtest::proc::L3Local*, *crate::backtest::proc::L3NoPartialFillExchange* --> hftbacktest/src/backtest/mod.rs:12:18 | 12 | models::{L3QueueModel, LatencyModel, QueueModel}, | ^^^^^^^^^^^^ no *L3QueueModel* in *backtest::models* ... 15 | L3Local, | ^^^^^^^ no *L3Local* in *backtest::proc* 16 | L3NoPartialFillExchange, | ^^^^^^^^^^^^^^^^^^^^^^^ no *L3NoPartialFillExchange* in backtest::proc | note: trait *crate::backtest::models::queue::L3QueueModel* exists but is inaccessible --> hftbacktest/src/backtest/models/queue.rs:378:1 | 378 | pub trait L3QueueModel<MD> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^ not accessible note: found an item that was configured out
The text was updated successfully, but these errors were encountered:
Looks like there are L3-unstable imports in backtest/mod.rs without the feature flag enabled.
py-hftbacktest$ maturin build
results in;
error: could not compile hftbacktest (lib) due to 1 previous error; 4 warnings emitted 💥 maturin failed Caused by: Failed to build a native library through cargo
The reported error is;
error[E0432]: unresolved imports *crate::backtest::models::L3QueueModel*, *crate::backtest::proc::L3Local*, *crate::backtest::proc::L3NoPartialFillExchange* --> hftbacktest/src/backtest/mod.rs:12:18 | 12 | models::{L3QueueModel, LatencyModel, QueueModel}, | ^^^^^^^^^^^^ no *L3QueueModel* in *backtest::models* ... 15 | L3Local, | ^^^^^^^ no *L3Local* in *backtest::proc* 16 | L3NoPartialFillExchange, | ^^^^^^^^^^^^^^^^^^^^^^^ no *L3NoPartialFillExchange* in
backtest::proc| note: trait *crate::backtest::models::queue::L3QueueModel* exists but is inaccessible --> hftbacktest/src/backtest/models/queue.rs:378:1 | 378 | pub trait L3QueueModel<MD> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^ not accessible note: found an item that was configured out
The text was updated successfully, but these errors were encountered: