forked from GraphQLSwift/GraphQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
28 lines (27 loc) · 814 Bytes
/
Package.swift
File metadata and controls
28 lines (27 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// swift-tools-version:5.8
import PackageDescription
let package = Package(
name: "Benchmarks",
platforms: [.macOS(.v13)],
dependencies: [
.package(name: "GraphQL", path: "../"),
.package(
url: "https://github.com/ordo-one/package-benchmark",
.upToNextMajor(from: "1.4.0")
),
],
targets: [
.executableTarget(
name: "Benchmarks",
dependencies: [
.product(name: "Benchmark", package: "package-benchmark"),
.product(name: "GraphQL", package: "GraphQL"),
],
path: "Benchmarks",
plugins: [
.plugin(name: "BenchmarkPlugin", package: "package-benchmark")
]
)
],
swiftLanguageVersions: [.v5, .version("6")]
)