Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit ad02315

Browse files
authored
Refactor modules for new optimizer changes (#105)
## Summary of changes This PR moves around the modules in the main branch in order to help merge #101 more easily.
1 parent d0ec48c commit ad02315

20 files changed

Lines changed: 168 additions & 858 deletions

File tree

Cargo.lock

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

optd-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ repository.workspace = true
77
[dependencies]
88
optd = { path = "../optd" }
99

10-
clap = { version = "4.5.37", features = ["derive"] }
10+
clap = { version = "4.5.38", features = ["derive"] }
1111
colored = "3.0.0"
12-
tokio = "1.44.2"
12+
tokio = "1.45.0"

optd/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,21 @@ ariadne = "0.5.1"
99
async-recursion = "1.1.1"
1010
async-trait = "0.1.88"
1111
chumsky = "0.9.3"
12-
clap = { version = "4.5.37", features = ["derive"] }
12+
clap = { version = "4.5.38", features = ["derive"] }
1313
colored = "3.0.0"
1414
enum_dispatch = "0.3.13"
1515
futures = "0.3.31"
16+
hashbrown = "0.15.3"
1617
iceberg = { version = "0.4.0", default-features = false }
1718
iceberg-catalog-memory = "0.4.0"
1819
once_cell = "1.21.3"
1920
ordered-float = "5.0.0"
20-
tempfile = "3.19.1"
21-
tokio = { version = "1.44.2", features = ["macros", "rt"] }
21+
tempfile = "3.20.0"
22+
tokio = { version = "1.45.0", features = ["macros", "rt"] }
2223
trait-variant = "0.1.2"
2324

2425
[dev-dependencies]
25-
tokio = { version = "1.44.2", features = [
26+
tokio = { version = "1.45.0", features = [
2627
"macros",
2728
"rt-multi-thread",
2829
"test-util"

0 commit comments

Comments
 (0)