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 @@ -17,7 +17,9 @@ let package = Package(
17
17
dependencies: [
18
18
// Dependencies declare other packages that this package depends on.
19
19
// .package(url: /* package url */, from: "1.0.0"),
20
- . package ( url: " https://github.com/swift-libp2p/swift-libp2p.git " , . upToNextMajor( from: " 0.1.0 " ) )
20
+ . package ( url: " https://github.com/swift-libp2p/swift-libp2p.git " , . upToNextMajor( from: " 0.1.0 " ) ) ,
21
+ . package ( url: " https://github.com/swift-libp2p/swift-libp2p-mplex.git " , . upToNextMajor( from: " 0.1.0 " ) ) ,
22
+ . package ( url: " https://github.com/swift-libp2p/swift-libp2p-noise.git " , . upToNextMajor( from: " 0.1.0 " ) )
21
23
] ,
22
24
targets: [
23
25
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
@@ -32,6 +34,10 @@ let package = Package(
32
34
] ) ,
33
35
. testTarget(
34
36
name: " LibP2PIdentifyTests " ,
35
- dependencies: [ " LibP2PIdentify " ] ) ,
37
+ dependencies: [
38
+ " LibP2PIdentify " ,
39
+ . product( name: " LibP2PNoise " , package : " swift-libp2p-noise " ) ,
40
+ . product( name: " LibP2PMPLEX " , package : " swift-libp2p-mplex " )
41
+ ] ) ,
36
42
]
37
43
)
You can’t perform that action at this time.
0 commit comments