forked from GregPerez83/BSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BSON.podspec
29 lines (25 loc) · 1.05 KB
/
BSON.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
29
#
# Be sure to run `pod lib lint Rockstar.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.name = 'BSON'
s.version = '6.0.4'
s.summary = 'A Swift implementation of the BSON specification'
s.description = <<-DESC
APIs designed to parse/serialize as well as encode/decode BSON data.
DESC
s.swift_version = '4.2'
s.homepage = 'https://github.com/OpenKitten/BSON'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'joannis' => '[email protected]' }
s.source = { :git => 'https://github.com/OpenKitten/BSON.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/joannisorlandos'
s.source_files = 'Sources/BSON/**/*'
s.dependency 'SwiftNIO', '>= 1.9.0'
end