Skip to content

Commit

Permalink
Consume SynchronizedDynamic dynamic library
Browse files Browse the repository at this point in the history
  • Loading branch information
atdrendel committed Apr 10, 2021
1 parent 772f459 commit e5b70a9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/shareup/synchronized.git",
"state": {
"branch": null,
"revision": "e8bbab660d61b4f78fd94c3640f1a03886c326ea",
"version": "2.1.0"
"revision": "56f5956cbd9cf4bcd2f92153c03ae293dffb0987",
"version": "2.3.0"
}
}
]
Expand Down
9 changes: 7 additions & 2 deletions Package.swift
Expand Up @@ -12,12 +12,17 @@ let package = Package(
targets: ["DispatchTimer"]),
],
dependencies: [
.package(name: "Synchronized", url: "https://github.com/shareup/synchronized.git", from: "2.1.0"),
.package(
name: "Synchronized",
url: "https://github.com/shareup/synchronized.git",
from: "2.3.0"),
],
targets: [
.target(
name: "DispatchTimer",
dependencies: ["Synchronized"]),
dependencies: [
.product(name: "SynchronizedDynamic", package: "Synchronized")
]),
.testTarget(
name: "DispatchTimerTests",
dependencies: ["DispatchTimer"]),
Expand Down

0 comments on commit e5b70a9

Please sign in to comment.