File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change 13
13
import PackageDescription
14
14
15
15
let package = Package (
16
- name: " swift-algorithms " ,
17
- products: [
18
- . library(
19
- name: " Algorithms " ,
20
- targets: [ " Algorithms " ] ) ,
21
- ] ,
22
- dependencies: [
23
- . package ( url: " https://github.com/apple/swift-numerics.git " , from: " 1.0.0 " ) ,
24
- ] ,
25
- targets: [
26
- . target(
27
- name: " Algorithms " ,
28
- dependencies: [
29
- . product( name: " RealModule " , package : " swift-numerics " ) ,
30
- ] ) ,
31
- . testTarget(
32
- name: " SwiftAlgorithmsTests " ,
33
- dependencies: [ " Algorithms " ] ) ,
34
- ]
16
+ name: " swift-algorithms " ,
17
+ products: [
18
+ . library(
19
+ name: " Algorithms " ,
20
+ targets: [ " Algorithms " ] )
21
+ ] ,
22
+ dependencies: [
23
+ . package ( url: " https://github.com/apple/swift-numerics.git " , from: " 1.0.0 " )
24
+ ] ,
25
+ targets: [
26
+ . target(
27
+ name: " Algorithms " ,
28
+ dependencies: [
29
+ . product( name: " RealModule " , package : " swift-numerics " )
30
+ ] ) ,
31
+ . testTarget(
32
+ name: " SwiftAlgorithmsTests " ,
33
+ dependencies: [ " Algorithms " ] ) ,
34
+ ]
35
35
)
You can’t perform that action at this time.
0 commit comments