Skip to content

Commit

Permalink
formatting cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
timsaucer committed Oct 30, 2024
1 parent 8db51af commit 67fc22b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ version = "0.1.0"
edition = "2021"

[dependencies]
datafusion = { workspace = true }
datafusion-ffi = { workspace = true }
abi_stable = "0.11.3"
arrow = { workspace = true }
arrow-array = { workspace = true }
arrow-schema = { workspace = true }
datafusion = { workspace = true }
datafusion-ffi = { workspace = true }
ffi_module_interface = { path = "../ffi_module_interface" }

[lib]
name = "ffi_example_table_provider"
crate-type = ["cdylib",'rlib']
crate-type = ["cdylib", 'rlib']
4 changes: 2 additions & 2 deletions datafusion-examples/examples/ffi/ffi_module_loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "parking_lot"] }
abi_stable = "0.11.3"
datafusion = { workspace = true }
datafusion-ffi = { workspace = true }
ffi_module_interface = { path = "../ffi_module_interface" }
abi_stable = "0.11.3"
tokio = { workspace = true, features = ["rt-multi-thread", "parking_lot"] }
2 changes: 1 addition & 1 deletion datafusion/ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ log = { workspace = true }
prost = { workspace = true }

[dev-dependencies]
tokio = { workspace = true }
tokio = { workspace = true }

0 comments on commit 67fc22b

Please sign in to comment.