Skip to content

[BigInt] Rename module #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//
// This source file is part of the Swift Numerics open source project
//
// Copyright (c) 2019 Apple Inc. and the Swift Numerics project authors
// Copyright (c) 2019 - 2020 Apple Inc. and the Swift Numerics project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
Expand All @@ -15,21 +15,21 @@ import PackageDescription
let package = Package(
name: "swift-numerics",
products: [
.library(name: "BigInt", targets: ["BigInt"]),
.library(name: "BigIntModule", targets: ["BigIntModule"]),
.library(name: "Complex", targets: ["Complex"]),
.library(name: "Numerics", targets: ["Numerics"]),
.library(name: "Real", targets: ["Real"]),
],
dependencies: [
],
targets: [
.target(name: "BigInt", dependencies: []),
.target(name: "BigIntModule", dependencies: []),
.target(name: "Complex", dependencies: ["Real"]),
.target(name: "Numerics", dependencies: ["BigInt", "Complex", "Real"]),
.target(name: "Numerics", dependencies: ["BigIntModule", "Complex", "Real"]),
.target(name: "NumericsShims", dependencies: []),
.target(name: "Real", dependencies: ["NumericsShims"]),

.testTarget(name: "BigIntTests", dependencies: ["BigInt"]),
.testTarget(name: "BigIntTests", dependencies: ["BigIntModule"]),
.testTarget(name: "ComplexTests", dependencies: ["Complex", "NumericsShims"]),
.testTarget(name: "RealTests", dependencies: ["Real"]),
]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Tests/BigIntTests/BigIntTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//
//===----------------------------------------------------------------------===//

import BigInt
import BigIntModule
import XCTest

extension BigInt {
Expand Down