Skip to content

Commit

Permalink
Standardize logging dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Jun 2, 2024
1 parent 3295ff4 commit 60751f8
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 13 deletions.
15 changes: 8 additions & 7 deletions nautilus_core/Cargo.lock

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

1 change: 1 addition & 0 deletions nautilus_core/accounting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ nautilus-common = { path = "../common", features = ["stubs"] }
nautilus-model = { path = "../model", features = ["stubs"] }
nautilus-core = { path = "../core" }
anyhow = { workspace = true }
log = { workspace = true }
pyo3 = { workspace = true, optional = true }
rust_decimal = { workspace = true }
serde = { workspace = true }
Expand Down
3 changes: 1 addition & 2 deletions nautilus_core/adapters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,16 @@ anyhow = { workspace = true }
chrono = { workspace = true }
indexmap = { workspace = true }
itoa = { workspace = true }
log = { workspace = true }
pyo3 = { workspace = true, optional = true }
pyo3-asyncio = { workspace = true, optional = true }
rand = { workspace = true }
rust_decimal = { workspace = true }
rust_decimal_macros = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
thiserror = { workspace = true }
ustr = { workspace = true }
databento = { version = "0.10.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion nautilus_core/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ nautilus-model = { path = "../model" }
nautilus-core = { path = "../core" }
nautilus-infrastructure = { path = "../infrastructure" , features = ["postgres"] }
anyhow = { workspace = true }
tokio = {workspace = true}
log = { workspace = true }
tokio = {workspace = true}
clap = { version = "4.5.4", features = ["derive", "env"] }
clap_derive = { version = "4.5.4" }
dotenvy = { version = "0.15.7" }
Expand Down
1 change: 0 additions & 1 deletion nautilus_core/execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ pyo3 = { workspace = true, optional = true }
pyo3-asyncio = { workspace = true, optional = true }
rust_decimal = { workspace = true }
rust_decimal_macros = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions nautilus_core/indicators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ crate-type = ["rlib", "cdylib"]
nautilus-core = { path = "../core" }
nautilus-model = { path = "../model", features = ["stubs"] }
anyhow = { workspace = true }
log = { workspace = true }
pyo3 = { workspace = true, optional = true }
strum = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion nautilus_core/infrastructure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ nautilus-core = { path = "../core" , features = ["python"] }
nautilus-model = { path = "../model" , features = ["python", "stubs"] }
anyhow = { workspace = true }
pyo3 = { workspace = true, optional = true }
log = { workspace = true }
log = { workspace = true } # Required until Cython gone
rmp-serde = { workspace = true }
rust_decimal = { workspace = true }
semver = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion nautilus_core/model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ crate-type = ["rlib", "staticlib"]
[dependencies]
nautilus-core = { path = "../core" }
anyhow = { workspace = true }
chrono = { workspace = true }
derive_builder = { workspace = true }
indexmap = { workspace = true }
once_cell = { workspace = true }
Expand All @@ -26,7 +27,6 @@ strum = { workspace = true }
thiserror = { workspace = true }
thousands = { workspace = true }
ustr = { workspace = true }
chrono = { workspace = true }
evalexpr = "11.3.0"
tabled = "0.15.0"

Expand Down
1 change: 1 addition & 0 deletions nautilus_core/persistence/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ nautilus-core = { path = "../core" }
nautilus-model = { path = "../model", features = ["stubs"] }
anyhow = { workspace = true }
futures = { workspace = true }
log = { workspace = true }
pyo3 = { workspace = true, optional = true }
rand = { workspace = true }
tokio = { workspace = true }
Expand Down

0 comments on commit 60751f8

Please sign in to comment.