swift-nio-ssl: Unable to include swift-nio-ssl in my Xcode-project and which uses Swift 4.2 Version
1)Swift Package Manager issue: I have used NIO and NIOSSL Dependency names in my Package.swift file.
Here is my Package.swift file
let package = Package(
name: "Test",
products: [
.library(
name: "Test",
targets: ["Test"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "1.4.0"),
],
targets: [
.target(
name: "Test",
dependencies: ["NIOSSL","NIO"]),
.testTarget(
name: "TestTests",
dependencies: ["Test"]),
]
)
Note: When i use this version 2.0.0-convergence.1 i am not able to do swift build. Thats why i have used 1.4.0
2)Cocopds Is there any way to integerate this repo using Cocopods? Please confirm me
3)Carthage Is there any way to integerate this repo using Carthage? Please confirm me
Thanks, Ranjith
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Comments: 22 (15 by maintainers)
Thank you so much @weissi
I am sure it can help me to write TCP Connection helper in iOS. If I am stuck or need anything, I will reply here or create an issue. Take care 👍