Skip to content

Instantly share code, notes, and snippets.

@laevandus
Created May 4, 2021 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laevandus/9664d389714b95a436cdd89033cc27f6 to your computer and use it in GitHub Desktop.
Save laevandus/9664d389714b95a436cdd89033cc27f6 to your computer and use it in GitHub Desktop.
// swift-tools-version:5.4
import PackageDescription
let package = Package(
name: "SwiftBenchmark",
products: [
.executable(
name: "SwiftBenchmark",
targets: ["SwiftBenchmark"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-collections-benchmark", from: "0.0.1"),
],
targets: [
.executableTarget(
name: "SwiftBenchmark",
dependencies: [.product(name: "CollectionsBenchmark", package: "swift-collections-benchmark")])
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment