2025-04-10 05:56:40 +08:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"cli",
|
2025-04-10 06:15:47 +08:00
|
|
|
"libs/dbt_utils",
|
2025-04-10 05:56:40 +08:00
|
|
|
# Add "libs/*" or specific lib crates here later
|
|
|
|
]
|
2024-11-22 06:47:21 +08:00
|
|
|
|
2025-04-10 05:56:40 +08:00
|
|
|
[workspace.dependencies]
|
2024-11-22 06:47:21 +08:00
|
|
|
anyhow = "1.0.79"
|
2025-04-10 06:48:40 +08:00
|
|
|
async-trait = "0.1.80"
|
2025-02-13 04:00:29 +08:00
|
|
|
clap = { version = "4.4.18", features = ["derive", "env"] }
|
2024-11-22 06:47:21 +08:00
|
|
|
confy = "0.6.0"
|
2025-04-10 05:56:40 +08:00
|
|
|
dirs = "6.0.0"
|
2025-02-13 04:00:29 +08:00
|
|
|
futures = "0.3.29"
|
2024-11-22 06:47:21 +08:00
|
|
|
indicatif = "0.17.8"
|
|
|
|
inquire = "0.7.5"
|
2025-02-12 21:48:29 +08:00
|
|
|
lazy_static = "1.4.0"
|
2024-11-26 23:46:09 +08:00
|
|
|
ratatui = "0.29.0"
|
2025-02-12 21:48:29 +08:00
|
|
|
regex = "1.10.3"
|
2025-02-13 04:00:29 +08:00
|
|
|
reqwest = { version = "0.12.9", features = ["json", "rustls-tls", "stream"] }
|
2024-11-22 06:47:21 +08:00
|
|
|
rpassword = "7.3.1"
|
|
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
|
|
serde_json = "1.0.113"
|
|
|
|
serde_yaml = "0.9.34"
|
2025-02-13 04:00:29 +08:00
|
|
|
tempfile = "3.10.0"
|
2024-11-22 06:47:21 +08:00
|
|
|
thiserror = "2.0.3"
|
|
|
|
tokio = { version = "1.36.0", features = ["full"] }
|
2025-02-13 04:00:29 +08:00
|
|
|
tokio-util = { version = "0.7.10", features = ["io"] }
|
|
|
|
futures-util = "0.3.30"
|
2024-11-22 06:47:21 +08:00
|
|
|
uuid = { version = "1.7.0", features = ["v4", "serde"] }
|
2025-02-12 23:14:38 +08:00
|
|
|
colored = "3.0"
|
2025-02-13 04:00:29 +08:00
|
|
|
rustls = { version = "0.23", features = ["tls12"] }
|
|
|
|
url = "2.5.0"
|
|
|
|
zip = "2.2.2"
|
2025-02-13 05:01:11 +08:00
|
|
|
glob = "0.3.1"
|
2025-02-26 03:13:23 +08:00
|
|
|
walkdir = "2.5.0"
|
2025-04-10 05:56:40 +08:00
|
|
|
# The query_engine dependency needs a workspace-relative path
|
|
|
|
query_engine = { path = "../api/libs/query_engine" } # Adjusted path
|
2025-04-11 00:49:04 +08:00
|
|
|
chrono = "0.4" # Specify the version here
|
2025-04-10 06:15:47 +08:00
|
|
|
semver = "1.0.19"
|
2025-04-11 01:01:00 +08:00
|
|
|
crossterm = "0.29" # Add crossterm explicitly
|
|
|
|
rustyline = "15.0.0"
|
2025-05-06 08:05:51 +08:00
|
|
|
once_cell = "1.19.0"
|
2025-05-07 01:12:19 +08:00
|
|
|
pathdiff = "0.2.1"
|
2025-05-08 07:10:57 +08:00
|
|
|
rust-embed = { version = "8.7.1", features = ["include-exclude"] }
|
2025-02-13 04:00:29 +08:00
|
|
|
|
2025-04-10 05:56:40 +08:00
|
|
|
# Keep dev-dependencies separate if they aren't shared
|
|
|
|
# tempfile = "3.16.0"
|