forked from eimlaymaire/swift-nio-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftNIOMQTTClient.podspec
More file actions
29 lines (21 loc) · 983 Bytes
/
SwiftNIOMQTTClient.podspec
File metadata and controls
29 lines (21 loc) · 983 Bytes
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
29
Pod::Spec.new do |spec|
spec.name = "SwiftNIOMQTTClient"
spec.version = "0.1.2"
spec.summary = "SwiftNIO-based MQTT v5.0 client."
spec.module_name = "NIOMQTTClient"
spec.description = <<-DESC
SwiftNIOMQTTClient is a SwiftNIO-based MQTT v5.0 client.
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/NIOMQTTClient/**/*.swift"
spec.dependency "SwiftNIOTransportServices", "~> 1.0"
spec.dependency "Logging", "~> 1.0"
spec.dependency "MQTTCodec", "~> 0.1"
end