Remove Atomics

This commit is contained in:
Thomas Ricouard 2023-02-27 06:40:30 +01:00
parent d1209e6704
commit 30de766777
3 changed files with 0 additions and 12 deletions

View file

@ -63,15 +63,6 @@
"version" : "0.13.3" "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", "identity" : "swiftsoup",
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",

View file

@ -17,14 +17,12 @@ let package = Package(
], ],
dependencies: [ dependencies: [
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.4.3"), .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: [ targets: [
.target( .target(
name: "Models", name: "Models",
dependencies: [ dependencies: [
"SwiftSoup", "SwiftSoup",
.product(name: "Atomics", package: "swift-atomics")
] ]
), ),
.testTarget( .testTarget(

View file

@ -1,5 +1,4 @@
import Foundation import Foundation
import Atomics
public struct Application: Codable, Identifiable, Hashable, Equatable { public struct Application: Codable, Identifiable, Hashable, Equatable {
public var id: String { public var id: String {