-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeyValueStorage.podspec
More file actions
22 lines (19 loc) · 932 Bytes
/
Copy pathKeyValueStorage.podspec
File metadata and controls
22 lines (19 loc) · 932 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 = "KeyValueStorage"
s.version = "0.1.0"
s.summary = "Thread-safe key-value storage framework with efficient prefix search"
s.description = <<-DESC
A protocol-based key-value storage framework for iOS, macOS, and watchOS.
Features CRUD operations, efficient prefix search via radix tree,
and full thread-safety with Swift 6 strict concurrency.
DESC
s.homepage = "https://github.com/askopin/key-value-storage"
s.license = { :type => "MIT" }
s.author = { "Anton Skopin" => "askopin@gmail.com" }
s.source = { :git => "https://github.com/askopin/KeyValueStorage.git", :tag => s.version }
s.ios.deployment_target = "16.0"
s.osx.deployment_target = "13.0"
s.swift_version = "6.0"
s.source_files = "KeyValueStorage/Sources/**/*.swift"
s.frameworks = "Foundation"
end