This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new d33bc9c49 build(rust): use cargo feature resolver version 3 (#4389)
d33bc9c49 is described below
commit d33bc9c497302ac244051a26334fb17895c5a47b
Author: eitsupi <[email protected]>
AuthorDate: Fri Jun 12 12:28:06 2026 +0900
build(rust): use cargo feature resolver version 3 (#4389)
Since we are using Rust 2024, we can enable version 3 of the resolver,
which takes MSRV into account.
---
rust/Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 44377f853..53ba33148 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -17,7 +17,7 @@
[workspace]
members = ["core", "driver_manager", "ffi", "driver/*"]
-resolver = "2"
+resolver = "3"
[workspace.package]
version = "0.24.0"