zeroshade commented on code in PR #3099: URL: https://github.com/apache/arrow-adbc/pull/3099#discussion_r2198810545
########## rust/core/Cargo.toml: ########## @@ -16,31 +16,39 @@ # under the License. [package] -name = "adbc_core" +authors.workspace = true +categories.workspace = true description = "Public abstract API, driver manager and driver exporter" -version.workspace = true +documentation.workspace = true edition.workspace = true -rust-version.workspace = true -authors.workspace = true +homepage.workspace = true +keywords.workspace = true license.workspace = true +name = "adbc_core" readme = "../README.md" -documentation.workspace = true -homepage.workspace = true repository.workspace = true -keywords.workspace = true -categories.workspace = true +rust-version.workspace = true +version.workspace = true [features] default = [] -driver_manager = ["dep:libloading"] +driver_manager = ["dep:toml", "dep:libloading", "dep:windows-sys", "dep:windows-registry"] +driver_manager_test_lib = ["driver_manager"] +driver_manager_test_manifest_user = ["driver_manager_test_lib"] [dependencies] arrow-array.workspace = true arrow-schema.workspace = true -libloading = { version = "0.8", optional = true } +libloading = {version = "0.8", optional = true} +toml = { version = "0.9.0", optional = true } Review Comment: I got it to work! huzzah! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org