Package.swift 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. // swift-tools-version:5.7
  2. // The swift-tools-version declares the minimum version of Swift required to build this package.
  3. import PackageDescription
  4. let publicLibraryTargets = [
  5. "CoreDataStack",
  6. "MastodonAsset",
  7. "MastodonCommon",
  8. "MastodonCore",
  9. "MastodonExtension",
  10. "MastodonLocalization",
  11. "MastodonSDK",
  12. "MastodonUI",
  13. ]
  14. let package = Package(
  15. name: "MastodonSDK",
  16. defaultLocalization: "en",
  17. platforms: [
  18. .iOS(.v15),
  19. ],
  20. products: [
  21. // Static Library
  22. .library(
  23. name: "MastodonSDK",
  24. targets: publicLibraryTargets
  25. ),
  26. // Dynamic Library
  27. .library(
  28. name: "MastodonSDKDynamic",
  29. type: .dynamic,
  30. targets: publicLibraryTargets
  31. )
  32. ],
  33. dependencies: [
  34. .package(name: "ArkanaKeys", path: "../dependencies/ArkanaKeys"),
  35. .package(url: "https://github.com/will-lumley/FaviconFinder.git", from: "3.2.2"),
  36. .package(url: "https://github.com/MainasuK/UITextView-Placeholder.git", from: "1.4.1"),
  37. .package(url: "https://github.com/Alamofire/Alamofire.git", from: "5.4.0"),
  38. .package(url: "https://github.com/Alamofire/AlamofireImage.git", from: "4.1.0"),
  39. .package(url: "https://github.com/apple/swift-collections.git", from: "1.0.3"),
  40. .package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0"),
  41. .package(url: "https://github.com/Flipboard/FLAnimatedImage.git", from: "1.0.0"),
  42. .package(url: "https://github.com/kean/Nuke-FLAnimatedImage-Plugin.git", from: "8.0.0"),
  43. .package(url: "https://github.com/kean/Nuke.git", from: "10.3.1"),
  44. .package(url: "https://github.com/kishikawakatsumi/KeychainAccess.git", from: "4.2.2"),
  45. .package(url: "https://github.com/slackhq/PanModal.git", from: "1.2.7"),
  46. .package(url: "https://github.com/TimOliver/TOCropViewController.git", from: "2.6.1"),
  47. .package(url: "https://github.com/TwidereProject/MetaTextKit.git", exact: "2.2.5"),
  48. .package(url: "https://github.com/TwidereProject/TabBarPager.git", from: "0.1.0"),
  49. .package(url: "https://github.com/uias/Tabman", from: "2.13.0"),
  50. .package(url: "https://github.com/woxtu/UIHostingConfigurationBackport.git", from: "0.1.0"),
  51. .package(url: "https://github.com/SDWebImage/SDWebImage.git", from: "5.12.0"),
  52. .package(url: "https://github.com/eneko/Stripes.git", from: "0.2.0"),
  53. .package(url: "https://github.com/NextLevel/NextLevelSessionExporter.git", from: "0.4.6"),
  54. ],
  55. targets: [
  56. // Targets are the basic building blocks of a package. A target can define a module or a test suite.
  57. // Targets can depend on other targets in this package, and on products in packages this package depends on.
  58. .target(
  59. name: "CoreDataStack",
  60. dependencies: [
  61. "MastodonCommon",
  62. ],
  63. exclude: [
  64. "Template/Stencil"
  65. ]
  66. ),
  67. .target(
  68. name: "MastodonAsset",
  69. dependencies: [],
  70. resources: [
  71. .process("Font"),
  72. ]
  73. ),
  74. .target(
  75. name: "MastodonCommon",
  76. dependencies: [
  77. "MastodonExtension",
  78. ]
  79. ),
  80. .target(
  81. name: "MastodonCore",
  82. dependencies: [
  83. "CoreDataStack",
  84. "MastodonAsset",
  85. "MastodonCommon",
  86. "MastodonLocalization",
  87. "MastodonSDK",
  88. .product(name: "Alamofire", package: "Alamofire"),
  89. .product(name: "AlamofireImage", package: "AlamofireImage"),
  90. .product(name: "ArkanaKeys", package: "ArkanaKeys"),
  91. .product(name: "KeychainAccess", package: "KeychainAccess"),
  92. .product(name: "MetaTextKit", package: "MetaTextKit")
  93. ]
  94. ),
  95. .target(
  96. name: "MastodonExtension",
  97. dependencies: []
  98. ),
  99. .target(
  100. name: "MastodonLocalization",
  101. dependencies: []
  102. ),
  103. .target(
  104. name: "MastodonSDK",
  105. dependencies: [
  106. .product(name: "NIOHTTP1", package: "swift-nio"),
  107. ]
  108. ),
  109. .target(
  110. name: "MastodonUI",
  111. dependencies: [
  112. "MastodonCore",
  113. .product(name: "FLAnimatedImage", package: "FLAnimatedImage"),
  114. .product(name: "FaviconFinder", package: "FaviconFinder"),
  115. .product(name: "Nuke", package: "Nuke"),
  116. .product(name: "UITextView+Placeholder", package: "UITextView-Placeholder"),
  117. .product(name: "UIHostingConfigurationBackport", package: "UIHostingConfigurationBackport"),
  118. .product(name: "TabBarPager", package: "TabBarPager"),
  119. .product(name: "OrderedCollections", package: "swift-collections"),
  120. .product(name: "Tabman", package: "Tabman"),
  121. .product(name: "MetaTextKit", package: "MetaTextKit"),
  122. .product(name: "CropViewController", package: "TOCropViewController"),
  123. .product(name: "PanModal", package: "PanModal"),
  124. .product(name: "Stripes", package: "Stripes"),
  125. .product(name: "NextLevelSessionExporter", package: "NextLevelSessionExporter"),
  126. ]
  127. ),
  128. .testTarget(
  129. name: "MastodonSDKTests",
  130. dependencies: ["MastodonSDK"]
  131. ),
  132. ]
  133. )