@@ -79,21 +79,21 @@ let package:Package = .init(
79
79
] ,
80
80
dependencies: [
81
81
. package ( url: " https://github.com/tayloraswift/swift-bson " , . upToNextMinor(
82
- from: " 0.9 .0" ) ) ,
82
+ from: " 1.0 .0" ) ) ,
83
83
. package ( url: " https://github.com/tayloraswift/swift-dom " , . upToNextMinor(
84
84
from: " 1.1.0 " ) ) ,
85
85
. package ( url: " https://github.com/tayloraswift/swift-grammar " , . upToNextMinor(
86
- from: " 0.4 .0 " ) ) ,
86
+ from: " 0.5 .0 " ) ) ,
87
87
. package ( url: " https://github.com/tayloraswift/swift-hash " , . upToNextMinor(
88
88
from: " 0.7.1 " ) ) ,
89
89
. package ( url: " https://github.com/tayloraswift/swift-ip " , . upToNextMinor(
90
- from: " 0.3.2 " ) ) ,
90
+ from: " 0.3.3 " ) ) ,
91
91
. package ( url: " https://github.com/tayloraswift/swift-json " , . upToNextMinor(
92
- from: " 1.1.0 " ) ) ,
92
+ from: " 1.1.2 " ) ) ,
93
93
. package ( url: " https://github.com/tayloraswift/swift-mongodb " , . upToNextMinor(
94
- from: " 0.29.1 " ) ) ,
94
+ from: " 0.29.2 " ) ) ,
95
95
. package ( url: " https://github.com/tayloraswift/swift-png " , . upToNextMinor(
96
- from: " 4.4.8 " ) ) ,
96
+ from: " 4.4.9 " ) ) ,
97
97
. package ( url: " https://github.com/tayloraswift/swift-ucf " , . upToNextMinor(
98
98
from: " 0.1.0 " ) ) ,
99
99
. package ( url: " https://github.com/tayloraswift/swift-unixtime " , . upToNextMinor(
@@ -107,10 +107,8 @@ let package:Package = .init(
107
107
. package ( url: " https://github.com/apple/swift-collections " , . upToNextMinor(
108
108
from: " 1.1.1 " ) ) ,
109
109
110
- . package ( url: " https://github.com/apple/swift-nio " ,
111
- from: " 2.68.0 " ) ,
112
- . package ( url: " https://github.com/apple/swift-nio-ssl " ,
113
- from: " 2.27.0 " ) ,
110
+ . package ( url: " https://github.com/apple/swift-nio " , from: " 2.79.0 " ) ,
111
+ . package ( url: " https://github.com/apple/swift-nio-ssl " , from: " 2.27.0 " ) ,
114
112
115
113
. package ( url: " https://github.com/apple/swift-nio-http2 " , . upToNextMinor(
116
114
from: " 1.33.0 " ) ) ,
@@ -442,6 +440,11 @@ let package:Package = .init(
442
440
443
441
. target( name: " TopologicalSorting " ) ,
444
442
443
+ . target( name: " Testing_ " ,
444
+ dependencies: [
445
+ . product( name: " Atomics " , package : " swift-atomics " ) ,
446
+ ] ) ,
447
+
445
448
. target( name: " UA " ,
446
449
dependencies: [
447
450
. product( name: " Grammar " , package : " swift-grammar " ) ,
@@ -628,19 +631,19 @@ let package:Package = .init(
628
631
dependencies: [
629
632
. target( name: " PackageMetadata " ) ,
630
633
. target( name: " System_ " ) ,
631
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
634
+ . target ( name: " Testing_ " ) ,
632
635
] ) ,
633
636
634
637
. executableTarget( name: " S3Tests " ,
635
638
dependencies: [
636
639
. target( name: " S3Client " ) ,
637
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
640
+ . target ( name: " Testing_ " ) ,
638
641
] ) ,
639
642
640
643
. executableTarget( name: " SemanticVersionTests " ,
641
644
dependencies: [
642
645
. target( name: " SemanticVersions " ) ,
643
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
646
+ . target ( name: " Testing_ " ) ,
644
647
] ) ,
645
648
646
649
. testTarget( name: " SymbolGraphValidationTests " ,
@@ -652,13 +655,13 @@ let package:Package = .init(
652
655
. executableTarget( name: " SymbolGraphBuilderTests " ,
653
656
dependencies: [
654
657
. target( name: " SymbolGraphBuilder " ) ,
655
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
658
+ . target ( name: " Testing_ " ) ,
656
659
] ) ,
657
660
658
661
. executableTarget( name: " SymbolGraphCompilerTests " ,
659
662
dependencies: [
660
663
. target( name: " SymbolGraphBuilder " ) ,
661
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
664
+ . target ( name: " Testing_ " ) ,
662
665
] ) ,
663
666
664
667
. testTarget( name: " SymbolGraphLinkerTests " ,
@@ -671,25 +674,25 @@ let package:Package = .init(
671
674
dependencies: [
672
675
. target( name: " SymbolGraphParts " ) ,
673
676
. target( name: " System_ " ) ,
674
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
677
+ . target ( name: " Testing_ " ) ,
675
678
] ) ,
676
679
677
680
. executableTarget( name: " SymbolGraphTests " ,
678
681
dependencies: [
679
682
. target( name: " SymbolGraphs " ) ,
680
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
683
+ . target ( name: " Testing_ " ) ,
681
684
] ) ,
682
685
683
686
. executableTarget( name: " SymbolTests " ,
684
687
dependencies: [
685
688
. target( name: " Symbols " ) ,
686
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
689
+ . target ( name: " Testing_ " ) ,
687
690
] ) ,
688
691
689
692
. executableTarget( name: " SystemTests " ,
690
693
dependencies: [
691
694
. target( name: " System_ " ) ,
692
- . product ( name: " Testing_ " , package : " swift-grammar " ) ,
695
+ . target ( name: " Testing_ " ) ,
693
696
] ,
694
697
exclude:
695
698
[
@@ -698,14 +701,14 @@ let package:Package = .init(
698
701
699
702
. executableTarget( name: " TopologicalSortingTests " ,
700
703
dependencies: [
704
+ . target( name: " Testing_ " ) ,
701
705
. target( name: " TopologicalSorting " ) ,
702
- . product( name: " Testing_ " , package : " swift-grammar " ) ,
703
706
] ) ,
704
707
705
708
. executableTarget( name: " UATests " ,
706
709
dependencies: [
710
+ . target( name: " Testing_ " ) ,
707
711
. target( name: " UA " ) ,
708
- . product( name: " Testing_ " , package : " swift-grammar " ) ,
709
712
] ) ,
710
713
711
714
. testTarget( name: " UnidocDBTests " ,
0 commit comments