Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
github "cezheng/Fuzi" ~> 3.1.3
github "cezheng/Fuzi" ~> 3.1.0
github "dexman/Minizip" ~> 1.4.0
github "krzyzanowskim/CryptoSwift" == 1.5.1 # From 1.6.0, the build fails in GitHub actions
github "krzyzanowskim/CryptoSwift" ~> 1.8.0
github "ra1028/DifferenceKit" ~> 1.3.0
github "readium/GCDWebServer" ~> 4.0.0
github "scinfu/SwiftSoup" == 2.5.3 # 2.6.0 requires Xcode 14
github "stephencelis/SQLite.swift" ~> 0.15.3
github "weichsel/ZIPFoundation" == 0.9.11 # 0.9.12 requires iOS 12+
github "scinfu/SwiftSoup" ~> 2.7.0
github "stephencelis/SQLite.swift" ~> 0.15.0
github "weichsel/ZIPFoundation" ~> 0.9.0
15 changes: 6 additions & 9 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,14 @@ let package = Package(
.library(name: "ReadiumAdapterLCPSQLite", targets: ["ReadiumAdapterLCPSQLite"]),
],
dependencies: [
.package(url: "https://github.com/cezheng/Fuzi.git", from: "3.1.3"),
// From 1.6.0, the build fails in GitHub actions with Carthage
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", "1.5.1" ..< "1.6.0"),
.package(url: "https://github.com/marmelroy/Zip.git", from: "2.1.2"),
.package(url: "https://github.com/cezheng/Fuzi.git", from: "3.1.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.0"),
.package(url: "https://github.com/marmelroy/Zip.git", from: "2.1.0"),
.package(url: "https://github.com/ra1028/DifferenceKit.git", from: "1.3.0"),
.package(url: "https://github.com/readium/GCDWebServer.git", from: "4.0.0"),
// From 2.6.0, Xcode 14 is required
.package(url: "https://github.com/scinfu/SwiftSoup.git", "2.5.3" ..< "2.6.0"),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3"),
// 0.9.12 requires iOS 12+
.package(url: "https://github.com/weichsel/ZIPFoundation.git", "0.9.0" ..< "0.9.12"),
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.7.0"),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.0"),
.package(url: "https://github.com/weichsel/ZIPFoundation.git", from: "0.9.0"),
],
targets: [
.target(
Expand Down
3 changes: 2 additions & 1 deletion Support/CocoaPods/ReadiumAdapterLCPSQLite.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Pod::Spec.new do |s|
s.ios.deployment_target = "13.0"
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }

s.dependency 'ReadiumLCP'
s.dependency 'ReadiumShared'
s.dependency 'SQLite.swift', '~> 0.15.3'
s.dependency 'SQLite.swift', '~> 0.15.0'

end
4 changes: 2 additions & 2 deletions Support/CocoaPods/ReadiumLCP.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Pod::Spec.new do |s|

s.dependency 'ReadiumShared'
s.dependency 'ReadiumInternal'
s.dependency 'ZIPFoundation', '<= 0.9.11' # 0.9.12 requires iOS 12+
s.dependency 'CryptoSwift', '<= 1.5.1' # From 1.6.0, the build fails in GitHub actions with Carthage
s.dependency 'ZIPFoundation', '~> 0.9.0'
s.dependency 'CryptoSwift', '~> 1.8.0'
end
2 changes: 1 addition & 1 deletion Support/CocoaPods/ReadiumNavigator.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ Pod::Spec.new do |s|
s.dependency 'ReadiumShared'
s.dependency 'ReadiumInternal'
s.dependency 'DifferenceKit', '~> 1.0'
s.dependency 'SwiftSoup', '<= 2.5.3' # From 2.6.0, Xcode 14 is required
s.dependency 'SwiftSoup', '~> 2.7.0'

end
2 changes: 1 addition & 1 deletion Support/CocoaPods/ReadiumOPDS.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Pod::Spec.new do |s|

s.dependency 'ReadiumShared'
s.dependency 'ReadiumInternal'
s.dependency 'Fuzi', '~> 3.0'
s.dependency 'Fuzi', '~> 3.1.0'

end
6 changes: 3 additions & 3 deletions Support/CocoaPods/ReadiumShared.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Pod::Spec.new do |s|
s.libraries = "xml2"
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }

s.dependency 'Fuzi', '~> 3.0'
s.dependency 'Minizip', '~> 1.0'
s.dependency 'SwiftSoup', '<= 2.5.3' # From 2.6.0, Xcode 14 is required
s.dependency 'Fuzi', '~> 3.1.0'
s.dependency 'Minizip', '~> 1.4.0'
s.dependency 'SwiftSoup', '~> 2.7.0'
s.dependency 'ReadiumInternal'

end
6 changes: 3 additions & 3 deletions Support/CocoaPods/ReadiumStreamer.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Pod::Spec.new do |s|

s.dependency 'ReadiumShared'
s.dependency 'ReadiumInternal'
s.dependency 'CryptoSwift', '<= 1.5.1' # From 1.6.0, the build fails in GitHub actions
s.dependency 'Fuzi', '~> 3.0'
s.dependency 'CryptoSwift', '~> 1.8.0'
s.dependency 'Fuzi', '~> 3.1.0'
s.dependency 'ReadiumGCDWebServer', '~> 4.0.0'
s.dependency 'Minizip', '~> 1.0'
s.dependency 'Minizip', '~> 1.4.0'

end