Skip to content

Commit

Permalink
Reorganize MessageBus and infrastructure crate
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Apr 16, 2024
1 parent 16978c8 commit 037c4f3
Show file tree
Hide file tree
Showing 23 changed files with 398 additions and 1,079 deletions.
1 change: 0 additions & 1 deletion nautilus_core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions nautilus_core/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ itertools = { workspace = true }
log = { workspace = true }
pyo3 = { workspace = true, optional = true }
pyo3-asyncio = { workspace = true, optional = true }
redis = { workspace = true, optional = true }
rstest = { workspace = true , optional = true}
rust_decimal = { workspace = true }
rust_decimal_macros = { workspace = true }
Expand Down Expand Up @@ -51,4 +50,3 @@ extension-module = [
ffi = ["cbindgen", "nautilus-core/ffi", "nautilus-model/ffi"]
python = ["pyo3", "pyo3-asyncio", "nautilus-core/python", "nautilus-model/python"]
stubs = ["rstest", "nautilus-model/stubs"]
redis = ["dep:redis"]
2 changes: 1 addition & 1 deletion nautilus_core/common/src/cache/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ impl Cache {
self.bars.clear();
self.instruments.clear();
self.synthetics.clear();
// self.accounts.clear(); // TODO
self.accounts.clear();
self.orders.clear();
// self.order_lists.clear(); // TODO
self.positions.clear();
Expand Down
1 change: 0 additions & 1 deletion nautilus_core/common/src/ffi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@
pub mod clock;
pub mod enums;
pub mod logging;
pub mod msgbus;
pub mod timer;
Loading

0 comments on commit 037c4f3

Please sign in to comment.