Package.swift can reference the xcframework as github release, so that we could use the xcframework in user project. Should we support it?
add targest like
// swift-tools-version:5.3
import PackageDescription
let package = Package(
// ...
targets: [
.binaryTarget(
name: "RxRealm",
url: "https://github.com/RxSwiftCommunity/RxRealm/releases/download/v5.0.1/RxRealm.xcframework.zip")
])