lukedg97 opened a new issue, #115: URL: https://github.com/apache/arrow-swift/issues/115
https://github.com/apache/arrow-swift/blob/62cef01e86aad05e4ccef461e39fb3bec3c8451c/Package.swift#L28-L32 The ArrowFlight target exists in the package, but it is not exposed as a library product in Package.swift. Because of this, consumers of the package cannot import ArrowFlight. Since it is not part of a .library product, SwiftPM does not make ArrowFlight available as an importable module to downstream packages. ``` .products = [ .library(name: "Arrow", targets: ["Arrow"]), .library(name: "ArrowFlight", targets: ["ArrowFlight"]) ] ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
