Skip to content

Commit 935eac1

Browse files
author
Robert Thompson
authored
Merge pull request #7 from benrimmington/BigInt
[BigInt] Rename module
2 parents 5ea7711 + 2f60891 commit 935eac1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// This source file is part of the Swift Numerics open source project
55
//
6-
// Copyright (c) 2019 Apple Inc. and the Swift Numerics project authors
6+
// Copyright (c) 2019 - 2020 Apple Inc. and the Swift Numerics project authors
77
// Licensed under Apache License v2.0 with Runtime Library Exception
88
//
99
// See https://swift.org/LICENSE.txt for license information
@@ -15,21 +15,21 @@ import PackageDescription
1515
let package = Package(
1616
name: "swift-numerics",
1717
products: [
18-
.library(name: "BigInt", targets: ["BigInt"]),
18+
.library(name: "BigIntModule", targets: ["BigIntModule"]),
1919
.library(name: "Complex", targets: ["Complex"]),
2020
.library(name: "Numerics", targets: ["Numerics"]),
2121
.library(name: "Real", targets: ["Real"]),
2222
],
2323
dependencies: [
2424
],
2525
targets: [
26-
.target(name: "BigInt", dependencies: []),
26+
.target(name: "BigIntModule", dependencies: []),
2727
.target(name: "Complex", dependencies: ["Real"]),
28-
.target(name: "Numerics", dependencies: ["BigInt", "Complex", "Real"]),
28+
.target(name: "Numerics", dependencies: ["BigIntModule", "Complex", "Real"]),
2929
.target(name: "NumericsShims", dependencies: []),
3030
.target(name: "Real", dependencies: ["NumericsShims"]),
3131

32-
.testTarget(name: "BigIntTests", dependencies: ["BigInt"]),
32+
.testTarget(name: "BigIntTests", dependencies: ["BigIntModule"]),
3333
.testTarget(name: "ComplexTests", dependencies: ["Complex", "NumericsShims"]),
3434
.testTarget(name: "RealTests", dependencies: ["Real"]),
3535
]
File renamed without changes.

Tests/BigIntTests/BigIntTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//
1010
//===----------------------------------------------------------------------===//
1111

12-
import BigInt
12+
import BigIntModule
1313
import XCTest
1414

1515
extension BigInt {

0 commit comments

Comments
 (0)