Skip to content

Commit

Permalink
Make formatter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
liurenjie1024 committed Sep 13, 2024
1 parent f68250b commit 9626679
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ members = [
"crates/examples",
"crates/iceberg",
"crates/integrations/*",
"crates/test_utils",
"crates/sqllogictests",
"crates/test_utils",
]
exclude = ["bindings/python"]

Expand Down
49 changes: 24 additions & 25 deletions crates/sqllogictests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,43 +1,42 @@
[package]
name = "sqllogictests"
version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
rust-version.workspace = true
version = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }

[dependencies]
anyhow = { workspace = true }
arrow = { workspace = true }
# For spark-connect-rs
arrow_51 = { version = "51", package = "arrow"}
arrow_51 = { version = "51", package = "arrow" }
async-trait = { workspace = true }
sqllogictest = "0.22"
datafusion = { workspace = true, default-features = true}
datafusion-common = { workspace = true, default-features = true}
thiserror = "1.0.63"
sqlparser = {workspace = true}
itertools = "0.13.0"
half = "2.4.1"
bigdecimal = "0.4.1"
rust_decimal = { version = "1.27.0" }
tempfile = { workspace = true }
datafusion = { workspace = true, default-features = true }
datafusion-common = { workspace = true, default-features = true }
env_logger = { workspace = true }
half = "2.4.1"
iceberg-catalog-rest = { path = "../catalog/rest" }
iceberg-datafusion = { path = "../integrations/datafusion" }
itertools = "0.13.0"
log = "0.4.22"
rust_decimal = { version = "1.27.0" }
spark-connect-rs = "0.0.1-beta.5"
anyhow = {workspace = true}
toml = "0.8.19"
url = {workspace = true}
iceberg-datafusion = { path = "../integrations/datafusion" }
iceberg-catalog-rest = { path = "../catalog/rest" }
sqllogictest = "0.22"
sqlparser = { workspace = true }
tempfile = { workspace = true }
thiserror = "1.0.63"
tokio = "1.38.0"
env_logger = { workspace = true }
toml = "0.8.19"
url = { workspace = true }

[dev-dependencies]
libtest-mimic = "0.7.3"
iceberg_test_utils = { path = "../test_utils", features = ["tests"] }

libtest-mimic = "0.7.3"

[[test]]
harness = false
name = "sqllogictests"
path = "tests/sqllogictests.rs"
path = "tests/sqllogictests.rs"

0 comments on commit 9626679

Please sign in to comment.