mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-22 16:31:00 +00:00
Remove Atomics
This commit is contained in:
parent
d1209e6704
commit
30de766777
3 changed files with 0 additions and 12 deletions
|
@ -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",
|
||||||
|
|
|
@ -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(
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue