Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,16 @@ aws-sdk-glue = "1.39"
bimap = "0.6"
bytes = "1.9"
chrono = "0.4.38"
ctor = "0.2.8"
clap = { version = "4.5.27", features = ["derive", "cargo"] }
ctor = "0.2.8"
datafusion = "45"
datafusion-cli = "45"
derive_builder = "0.20"
expect-test = "1"
dirs = "6"
expect-test = "1"
faststr = "0.2.31"
fnv = "1.0.7"
fs-err = "3.1.0"
futures = "0.3"
hive_metastore = "0.1"
http = "1.1"
Expand Down Expand Up @@ -103,10 +104,10 @@ tempfile = "3.18"
tera = "1"
thrift = "0.17.0"
tokio = { version = "1.44", default-features = false }
toml = "0.8"
tracing = "0.1.37"
tracing-subscriber = "0.3.8"
typed-builder = "0.20"
toml = "0.8"
url = "2.5.4"
uuid = { version = "1.14", features = ["v7"] }
volo = "0.10.6"
Expand Down
1 change: 1 addition & 0 deletions crates/integrations/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ tracing-subscriber = {workspace = true}
dirs = {workspace = true}
stacker = {workspace = true}
mimalloc = {workspace = true}
fs-err = {workspace = true}

[package.metadata.cargo-machete]
# These dependencies are added to ensure minimal dependency version
Expand Down
2 changes: 1 addition & 1 deletion crates/integrations/cli/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

use std::any::Any;
use std::collections::HashMap;
use std::fs::read_to_string;
use std::path::Path;
use std::sync::Arc;

use anyhow::anyhow;
use datafusion::catalog::{CatalogProvider, CatalogProviderList};
use fs_err::read_to_string;
use iceberg_catalog_rest::{RestCatalog, RestCatalogConfig};
use iceberg_datafusion::IcebergCatalogProvider;
use toml::{Table as TomlTable, Value};
Expand Down
Loading