diff --git a/Package.swift b/Package.swift index 3ecfd09..9c2e369 100644 --- a/Package.swift +++ b/Package.swift @@ -19,14 +19,17 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/apple/swift-numerics", from: "1.0.0"), - .package(url: "https://github.com/coenttb/swift-memory-allocation", from: "0.2.0") + .package( + url: "https://github.com/swift-primitives/swift-memory-allocation-primitives.git", + from: "0.2.0" + ), ], targets: [ .target( name: "TestingPerformance", dependencies: [ .product(name: "Numerics", package: "swift-numerics"), - .product(name: "MemoryAllocation", package: "swift-memory-allocation") + .product(name: "MemoryAllocation", package: "swift-memory-allocation-primitives") ] ), .testTarget(