Skip to content

Commit a170531

Browse files
committed
Update workspace manifest and dependencies
1 parent 95a671e commit a170531

File tree

5 files changed

+62
-52
lines changed

5 files changed

+62
-52
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ nautilus-testkit = { path = "crates/testkit", version = "0.47.0" }
6363
nautilus-trading = { path = "crates/trading", version = "0.47.0" }
6464

6565
# Adapters
66+
nautilus-blockchain = { path = "crates/adapters/blockchain", version = "0.47.0" }
6667
nautilus-coinbase-intx = { path = "crates/adapters/coinbase_intx", version = "0.47.0" }
6768
nautilus-databento = { path = "crates/adapters/databento", version = "0.47.0" }
6869
nautilus-tardis = { path = "crates/adapters/tardis", version = "0.47.0" }

crates/adapters/blockchain/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,24 @@ nautilus-core = { workspace = true }
3131
nautilus-network = { workspace = true, features = ["python"] }
3232
nautilus-common = { workspace = true }
3333

34-
log = { workspace = true }
35-
tokio = { workspace = true }
36-
reqwest = { workspace = true }
3734
anyhow = { workspace = true }
38-
tracing = { workspace = true }
39-
tokio-tungstenite = { workspace = true }
35+
async-trait = { workspace = true }
36+
dotenvy = { workspace = true }
37+
enum_dispatch = { workspace = true }
4038
futures-util = { workspace = true }
39+
log = { workspace = true }
40+
reqwest = { workspace = true }
4141
serde = { workspace = true }
4242
serde_json = { workspace = true }
43-
thiserror = { workspace = true }
44-
enum_dispatch = { workspace = true }
45-
async-trait = { workspace = true }
46-
dotenvy = { workspace = true }
4743
strum = { workspace = true }
44+
thiserror = { workspace = true }
45+
tokio = { workspace = true }
46+
tokio-tungstenite = { workspace = true }
47+
tracing = { workspace = true }
4848

4949
[dev-dependencies]
5050
rstest = { workspace = true }
5151

52-
[[bin]]
53-
name = "live_blocks"
54-
path = "bin/watch_live_blocks.rs"
52+
# [[bin]] # TODO: Temporarily comment to repair docker build (linking issue)
53+
# name = "live_blocks"
54+
# path = "bin/watch_live_blocks.rs"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies = [
3131
"msgspec>=0.19.0,<1.0.0",
3232
"numpy>=1.26.4",
3333
"pandas>=2.2.3,<3.0.0",
34-
"pyarrow>=19.0.1",
34+
"pyarrow>=20.0.0",
3535
"pytz>=2025.1.0",
3636
"tqdm>=4.67.1,<5.0.0",
3737
"uvloop>=0.21.0,<1.0.0; sys_platform != \"win32\"",

0 commit comments

Comments
 (0)