Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathAsyncQueue.podspec
More file actions
Latest commit
16 lines (16 loc) · 635 Bytes
/
Copy pathAsyncQueue.podspec
File metadata and controls
16 lines (16 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.newdo |s|
s.name='AsyncQueue'
s.version='1.0.0'
s.license='MIT'
s.summary='A queue that enables ordered sending of events from synchronous to asynchronous code.'
s.homepage='https://github.com/dfed/swift-async-queue'
s.authors='Dan Federman'
s.source={:git=>'https://github.com/dfed/swift-async-queue.git',:tag=>s.version}
s.swift_version='6.2'
s.source_files='Sources/**/*.{swift}'
s.ios.deployment_target='13.0'
s.tvos.deployment_target='13.0'
s.watchos.deployment_target='6.0'
s.macos.deployment_target='10.15'
s.visionos.deployment_target='1'
end