Skip to content

Commit 8bbd2d3

Browse files
committed
Cleanup
1 parent e1918a6 commit 8bbd2d3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ license = "Apache-2.0"
2626
edition = "2024"
2727
rust-version = "1.88"
2828

29-
3029
[workspace]
3130
members = ["crates/core", "crates/util", "examples/datafusion-ffi-example"]
31+
resolver = "3"
3232

3333
[workspace.dependencies]
3434
tokio = { version = "1.49" }
File renamed without changes.

crates/util/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
[package]
1919
name = "datafusion-python-util"
20-
version = "52.0.0"
21-
edition = "2024"
22-
rust-version = "1.88"
23-
license = "Apache-2.0"
20+
version.workspace = true
21+
edition.workspace = true
22+
rust-version.workspace = true
23+
license.workspace = true
2424

2525
[dependencies]
2626
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] }

examples/datafusion-ffi-example/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
[package]
1919
name = "datafusion-ffi-example"
20-
version = "0.2.0"
21-
edition = "2024"
20+
version.workspace = true
21+
edition.workspace = true
2222
publish = false
2323

2424
[dependencies]
@@ -32,7 +32,7 @@ datafusion-ffi = { workspace = true }
3232
pyo3 = { workspace = true, features = [
3333
"extension-module",
3434
"abi3",
35-
"abi3-py39",
35+
"abi3-py310",
3636
] }
3737
arrow = { workspace = true }
3838
arrow-array = { workspace = true }

0 commit comments

Comments
 (0)