Skip to content
Open
32 changes: 19 additions & 13 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ form_urlencoded = "1.2.2"
fs-err = "3.1.0"
futures = "0.3"
hive_metastore = "0.2.0"
hmac = "0.12"
home = "0.5.12"
http = "1.2"
iceberg = { version = "0.10.0", path = "./crates/iceberg" }
Expand Down Expand Up @@ -137,6 +138,7 @@ serde_derive = "1.0.219"
serde_json = "1.0.142"
serde_repr = "0.1.16"
serde_with = "3.4"
sha2 = "0.10"
sqllogictest = "0.29"
sqlx = { version = "0.8.1", default-features = false }
stacker = "0.1.20"
Expand Down
8 changes: 8 additions & 0 deletions crates/catalog/rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,29 @@ repository = { workspace = true }

[dependencies]
async-trait = { workspace = true }
base64 = { workspace = true }
chrono = { workspace = true }
hmac = { workspace = true }
http = { workspace = true }
iceberg = { workspace = true }
itertools = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_derive = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
typed-builder = { workspace = true }
uuid = { workspace = true, features = ["v4"] }

[dev-dependencies]
bytes = { workspace = true }
futures = { workspace = true }
iceberg_test_utils = { path = "../../test_utils", features = ["tests"] }
mockito = { workspace = true }
# `stream` lets tests build a streaming body to exercise HttpRequestBody::Streaming.
reqwest = { workspace = true, features = ["stream"] }
tokio = { workspace = true }

[lints]
Expand Down
105 changes: 102 additions & 3 deletions crates/catalog/rest/public-api.txt

Large diffs are not rendered by default.

Loading
Loading