-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFastULID.podspec
More file actions
27 lines (21 loc) · 1.04 KB
/
FastULID.podspec
File metadata and controls
27 lines (21 loc) · 1.04 KB
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
Pod::Spec.new do |s|
s.name = 'FastULID'
s.version = '1.0.0'
s.summary = 'High-performance ULID (Universally Unique Lexicographically Sortable Identifier) implementation in Swift'
s.description = <<-DESC
A highly optimized ULID implementation in Swift with 3-10x performance improvements.
Features include clock drift handling, configurable time providers, batch generation,
and full compatibility with the original yaslab/ULID.swift API.
DESC
s.homepage = 'https://github.com/elijahdou/FastULID'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'FastULID Contributors' => 'elijahdou@gmail.com' }
s.source = { :git => 'https://github.com/elijahdou/FastULID.git', :tag => s.version.to_s }
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '12.0'
s.watchos.deployment_target = '8.0'
s.tvos.deployment_target = '15.0'
s.swift_version = '5.9'
s.source_files = 'Sources/FastULID/**/*.swift'
s.frameworks = 'Foundation'
end