From f68c3752e20a6d438fbe309ef8fd45ccbf4a186a Mon Sep 17 00:00:00 2001 From: Coen ten Thije Boonkkamp Date: Wed, 29 Jul 2026 18:23:41 +0200 Subject: [PATCH] Use canonical memory allocation dependency --- Package.swift | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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(