Remove Atomics
This commit is contained in:
parent
d1209e6704
commit
30de766777
|
@ -63,15 +63,6 @@
|
|||
"version" : "0.13.3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"identity" : "swift-atomics",
|
||||
"kind" : "remoteSourceControl",
|
||||
"location" : "https://github.com/apple/swift-atomics.git",
|
||||
"state" : {
|
||||
"revision" : "ff3d2212b6b093db7f177d0855adbc4ef9c5f036",
|
||||
"version" : "1.0.3"
|
||||
}
|
||||
},
|
||||
{
|
||||
"identity" : "swiftsoup",
|
||||
"kind" : "remoteSourceControl",
|
||||
|
|
|
@ -17,14 +17,12 @@ let package = Package(
|
|||
],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.4.3"),
|
||||
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.3"),
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "Models",
|
||||
dependencies: [
|
||||
"SwiftSoup",
|
||||
.product(name: "Atomics", package: "swift-atomics")
|
||||
]
|
||||
),
|
||||
.testTarget(
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import Foundation
|
||||
import Atomics
|
||||
|
||||
public struct Application: Codable, Identifiable, Hashable, Equatable {
|
||||
public var id: String {
|
||||
|
|
Loading…
Reference in New Issue