-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMQTTCodec.podspec
28 lines (20 loc) · 915 Bytes
/
MQTTCodec.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |spec|
spec.name = "MQTTCodec"
spec.version = "0.1.2"
spec.summary = "SwiftNIO-based MQTT v5.0 codec."
spec.module_name = "MQTTCodec"
spec.description = <<-DESC
MQTTCodec is a SwiftNIO-based MQTT v5.0 codec.
DESC
spec.homepage = "https://github.com/HealthTap/swift-nio-mqtt"
spec.license = "Apache License, Version 2.0"
spec.author = { "Bofei Zhu" => "zhu.bofei@gmail.com" }
spec.swift_versions = "5.0"
spec.ios.deployment_target = "12.0"
spec.osx.deployment_target = "10.14"
spec.tvos.deployment_target = "12.0"
spec.source = { :git => "https://github.com/HealthTap/swift-nio-mqtt.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/MQTTCodec/**/*.swift"
spec.dependency "SwiftNIO", "~> 2.0"
spec.dependency "SwiftNIOFoundationCompat", "~> 2.0"
end