Skip to content

Commit

Permalink
Removed OTAtomics dependency as it was not being used (was only used …
Browse files Browse the repository at this point in the history
…by Operation subclasses that are now removed)
  • Loading branch information
orchetect committed Feb 14, 2022
1 parent f1e6724 commit c780fba
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,18 @@ let package = Package(
],

dependencies: [
.package(url: "https://github.com/orchetect/OTAtomics", from: "1.0.0"),

// testing-only dependency
.package(url: "https://github.com/orchetect/SegmentedProgress", from: "1.0.1")
],

targets: [
.target(
name: "OTCore",
dependencies: ["OTAtomics"]),
dependencies: []),

.testTarget(
name: "OTCoreTests",
dependencies: ["OTCore", "OTAtomics", "SegmentedProgress"])
dependencies: ["OTCore", "SegmentedProgress"])
]

)
Expand Down

0 comments on commit c780fba

Please sign in to comment.