-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHyperProxyCore.podspec
More file actions
22 lines (22 loc) · 908 Bytes
/
Copy pathHyperProxyCore.podspec
File metadata and controls
22 lines (22 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'HyperProxyCore'
s.version = '0.4.1'
s.summary = 'Provider-neutral secure AI API transport for Swift.'
s.homepage = 'https://github.com/Tsvihun/HyperProxySwift'
s.license = { :type => 'MIT' }
s.author = { 'HyperProxy' => 'contact@hyperproxyai.com' }
s.source = { :git => 'https://github.com/Tsvihun/HyperProxySwift.git', :tag => s.version.to_s }
s.swift_version = '6.0'
s.cocoapods_version = '>= 1.16.0'
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '13.0'
s.source_files = 'Sources/HyperProxyCore/**/*.swift'
s.resource_bundles = {
'HyperProxyCore_Privacy' => ['Sources/HyperProxyCore/Resources/PrivacyInfo.xcprivacy']
}
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'SWIFT_STRICT_CONCURRENCY' => 'complete',
'OTHER_SWIFT_FLAGS' => '$(inherited) -enable-upcoming-feature NonisolatedNonsendingByDefault'
}
end