File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,16 @@ let package = Package(
2424 . plugin( name: " DependencyAuditPlugin " , targets: [ " DependencyAuditPlugin " ] ) ,
2525 ] ,
2626 dependencies: [
27- . package ( url: " https://github.com/apple/swift-argument-parser.git " , from: " 1.6.1 " )
27+ . package ( url: " https://github.com/apple/swift-argument-parser.git " , from: " 1.6.1 " ) ,
28+ . package ( url: " https://github.com/swiftlang/swift-syntax.git " , from: " 601.0.1 " ) ,
2829 ] ,
2930 targets: [
3031 . target(
3132 name: " SwiftDependencyAuditLib " ,
33+ dependencies: [
34+ . product( name: " SwiftSyntax " , package : " swift-syntax " ) ,
35+ . product( name: " SwiftParser " , package : " swift-syntax " ) ,
36+ ] ,
3237 plugins: [ " VersionPlugin " ]
3338 ) ,
3439 . executableTarget(
@@ -46,7 +51,8 @@ let package = Package(
4651 ) ,
4752 . testTarget(
4853 name: " SwiftDependencyAuditTests " ,
49- dependencies: [ " SwiftDependencyAuditLib " ]
54+ dependencies: [ " SwiftDependencyAuditLib " ] ,
55+ resources: [ . copy( " Fixtures " ) ]
5056 ) ,
5157 . plugin(
5258 name: " DependencyAuditPlugin " ,
You can’t perform that action at this time.
0 commit comments