Skip to content

Commit c9cd55a

Browse files
committed
refactor: remove dashes from package name
1 parent 8b0cac3 commit c9cd55a

28 files changed

+32
-32
lines changed

Package.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "tkey-mpc-swift",
7+
name: "tKeyMPCSwift",
88
platforms: [
99
.iOS(SupportedPlatform.IOSVersion.v15)
1010
],
1111
products: [
1212
// Products define the executables and libraries a package produces, and make them visible to other packages.
1313
.library(
14-
name: "tkey-mpc-swift",
15-
targets: ["tkey-mpc-swift"]),
14+
name: "tKeyMPCSwift",
15+
targets: ["tKeyMPCSwift"]),
1616
],
1717
dependencies: [
1818
// Dependencies declare other packages that this package depends on.
@@ -33,13 +33,13 @@ let package = Package(
3333
path: "Sources/libtkey"
3434
),
3535
.target(
36-
name: "tkey-mpc-swift",
36+
name: "tKeyMPCSwift",
3737
dependencies: ["lib", "TorusUtils"],
3838
path: "Sources/ThresholdKey"
3939
),
4040
.testTarget(
4141
name: "tkey-pkgTests",
42-
dependencies: ["tkey-mpc-swift", "CryptoSwift", .product(name: "JWTKit", package: "jwt-kit")],
42+
dependencies: ["tKeyMPCSwift", "CryptoSwift", .product(name: "JWTKit", package: "jwt-kit")],
4343
path: "Tests/tkeypkgTests"
4444
),
4545
]

Tests/tkeypkgTests/IntegrationTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import FetchNodeDetails
33
import Foundation
44
import TorusUtils
55
import XCTest
6-
@testable import tkey_mpc_swift
6+
@testable import tKeyMPCSwift
77

88
final class integrationTests: XCTestCase {
99
func test_TssModule() async throws {

Tests/tkeypkgTests/modules/tkey_pkgPrivateKeysModuleTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgPrivateKeyModuleTests: XCTestCase {

Tests/tkeypkgTests/modules/tkey_pkgSecurityQuestionModuleTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgSecurityQuestionModuleTests: XCTestCase {

Tests/tkeypkgTests/modules/tkey_pkgSeedPhraseModuleTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgSeedPhraseModuleTests: XCTestCase {

Tests/tkeypkgTests/modules/tkey_pkgShareSerializationModuleTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgShareSerializationModuleTests: XCTestCase {

Tests/tkeypkgTests/modules/tkey_pkgShareTransferModuleTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgShareTransferModuleTests: XCTestCase {

Tests/tkeypkgTests/tkey_base.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import Foundation
99
import XCTest
1010
import Foundation
11-
@testable import tkey_mpc_swift
11+
@testable import tKeyMPCSwift
1212
import TorusUtils
1313

1414
class tkey_baseTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgGenerateShareStoreResultTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgGenerateShareStoreResultTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgKeyDetailsTest.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgKeyDetailsTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgKeyPointArrayTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgKeyPointArrayTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgKeyPointTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgKeyPointTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgKeyReconstructionDetailsTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgKeyReconstructionDetailsTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgLocalMetadataTransitionsTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgLocalMetadataTransitionsTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgMetadataTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgMetadataTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgNodeDetailsTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgNodeDetailsTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgPolynomialTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgPolynomialTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgPrivateKeyTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgPrivateKeyTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgPublicPolynomialTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgPublicPolynomialTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgServiceProviderTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgServiceProviderTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgShareStoreArrayTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgShareStoreArrayTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgShareStoreMapTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgShareStoreMapTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgShareStorePolyIdIndexMapTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgShareStorePolyIdIndexMapTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgShareStoreTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgShareStoreTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgStorageLayerTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgStorageLayerTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgThresholdKeyTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44

55
final class tkey_pkgThresholdKeyTests: XCTestCase {
66
func test_basic_threshold_key_reconstruct() async {

Tests/tkeypkgTests/tkey_pkgTssOptionsTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44
import Foundation
55

66
final class tkey_pkgTssOptionsTests: XCTestCase {

Tests/tkeypkgTests/tkey_pkgVersionTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import XCTest
22
import Foundation
3-
@testable import tkey_mpc_swift
3+
@testable import tKeyMPCSwift
44

55
final class tkey_pkgVersionTests: XCTestCase {
66
func test_library_version() {

0 commit comments

Comments
 (0)