mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
- Adds `Logging` protocol - Moves to Swift-style `OSLog` usage os_log to Logger os_log audit Replacment of os.log with Logging
24 lines
551 B
Swift
24 lines
551 B
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Secrets",
|
|
platforms: [.macOS(SupportedPlatform.MacOSVersion.v11), .iOS(SupportedPlatform.IOSVersion.v14)],
|
|
products: [
|
|
.library(
|
|
name: "Secrets",
|
|
type: .dynamic,
|
|
targets: ["Secrets"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/OAuthSwift/OAuthSwift.git", .exact("2.1.2")),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Secrets",
|
|
dependencies: [
|
|
"OAuthSwift",
|
|
]),
|
|
]
|
|
)
|