diff --git a/.cirrus.yml b/.cirrus.yml
new file mode 100644
index 0000000..9774a98
--- /dev/null
+++ b/.cirrus.yml
@@ -0,0 +1,10 @@
+task:
+ name: Build
+ persistent_worker:
+ labels:
+ os: darwin
+ arch: arm64
+ build_script: swift build
+ sign_script: codesign --sign - --entitlements Sources/tart/tart.entitlements --force .build/debug/tart
+ binary_artifacts:
+ path: .build/debug/tart
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 01dd33a..77a175b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,12 @@
# Xcode's user settings
xcuserdata/
+tart.xcodeproj/
+
+# SwiftPM
+.swiftpm/
+
+# AppCode
+.idea/
+
+# Swift
+.build/
diff --git a/.run/sign debug.run.xml b/.run/sign debug.run.xml
new file mode 100644
index 0000000..03d2bb0
--- /dev/null
+++ b/.run/sign debug.run.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.run/tart create.run.xml b/.run/tart create.run.xml
new file mode 100644
index 0000000..8831dfa
--- /dev/null
+++ b/.run/tart create.run.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Package.resolved b/Package.resolved
new file mode 100644
index 0000000..01ca2af
--- /dev/null
+++ b/Package.resolved
@@ -0,0 +1,14 @@
+{
+ "pins" : [
+ {
+ "identity" : "swift-argument-parser",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/apple/swift-argument-parser",
+ "state" : {
+ "revision" : "e394bf350e38cb100b6bc4172834770ede1b7232",
+ "version" : "1.0.3"
+ }
+ }
+ ],
+ "version" : 2
+}
diff --git a/Package.swift b/Package.swift
new file mode 100644
index 0000000..f60c327
--- /dev/null
+++ b/Package.swift
@@ -0,0 +1,19 @@
+// swift-tools-version:5.6
+
+import PackageDescription
+
+let package = Package(
+ name: "Tart",
+ platforms: [
+ .macOS(.v12)
+ ],
+ dependencies: [
+ .package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.3"),
+ ],
+ targets: [
+ .executableTarget(name: "tart",
+ dependencies: [
+ .product(name: "ArgumentParser", package: "swift-argument-parser"),
+ ]),
+ ]
+)
diff --git a/tart.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Sources/tart/tart.entitlements
similarity index 77%
rename from tart.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to Sources/tart/tart.entitlements
index 18d9810..f7f5d7c 100644
--- a/tart.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+++ b/Sources/tart/tart.entitlements
@@ -2,7 +2,7 @@
- IDEDidComputeMac32BitWarning
+ com.apple.security.virtualization
-
+
\ No newline at end of file
diff --git a/tart.xcodeproj/project.pbxproj b/tart.xcodeproj/project.pbxproj
deleted file mode 100644
index 122636b..0000000
--- a/tart.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,476 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 55;
- objects = {
-
-/* Begin PBXBuildFile section */
- 440478FB27B134E10028EFB8 /* ArgumentParser in Frameworks */ = {isa = PBXBuildFile; productRef = 440478FA27B134E10028EFB8 /* ArgumentParser */; };
- 440478FD27B1352C0028EFB8 /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 440478FC27B1352C0028EFB8 /* Create.swift */; };
- 440478FF27B13D590028EFB8 /* Run.swift in Sources */ = {isa = PBXBuildFile; fileRef = 440478FE27B13D590028EFB8 /* Run.swift */; };
- 4473E1E527A94E28000850C3 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4473E1E427A94E28000850C3 /* main.swift */; };
- 4484BA6B27BF1F270043A359 /* IP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4484BA6A27BF1F270043A359 /* IP.swift */; };
- 4484BA7027BF1F6D0043A359 /* ARPCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4484BA6E27BF1F6D0043A359 /* ARPCache.swift */; };
- 4484BA7127BF1F6D0043A359 /* MACAddress.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4484BA6F27BF1F6D0043A359 /* MACAddress.swift */; };
- 44DD8D8D27C596B300BB9041 /* Clone.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44DD8D8C27C596B300BB9041 /* Clone.swift */; };
- 44FDBB3427B4177C005A201B /* VMStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44FDBB3327B4177C005A201B /* VMStorage.swift */; };
- 44FDBB4227B43E6D005A201B /* VM.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44FDBB4127B43E6D005A201B /* VM.swift */; };
- 44FDBB4427B4445E005A201B /* Root.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44FDBB4327B4445E005A201B /* Root.swift */; };
- 44FDBB4627B44B35005A201B /* VMConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44FDBB4527B44B35005A201B /* VMConfig.swift */; };
- 44FDBB4827B45EA1005A201B /* Delete.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44FDBB4727B45EA1005A201B /* Delete.swift */; };
- 44FDBB4A27B45F6F005A201B /* List.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44FDBB4927B45F6F005A201B /* List.swift */; };
- 44FDBB4C27B69515005A201B /* VMDirectory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44FDBB4B27B69515005A201B /* VMDirectory.swift */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXCopyFilesBuildPhase section */
- 4473E1DF27A94E27000850C3 /* CopyFiles */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = /usr/share/man/man1/;
- dstSubfolderSpec = 0;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 1;
- };
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
- 440478FC27B1352C0028EFB8 /* Create.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Create.swift; sourceTree = ""; };
- 440478FE27B13D590028EFB8 /* Run.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Run.swift; sourceTree = ""; };
- 4473E1E127A94E27000850C3 /* tart */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = tart; sourceTree = BUILT_PRODUCTS_DIR; };
- 4473E1E427A94E28000850C3 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = ""; };
- 4484BA6A27BF1F270043A359 /* IP.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IP.swift; sourceTree = ""; };
- 4484BA6E27BF1F6D0043A359 /* ARPCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ARPCache.swift; sourceTree = ""; };
- 4484BA6F27BF1F6D0043A359 /* MACAddress.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MACAddress.swift; sourceTree = ""; };
- 44DD8D8C27C596B300BB9041 /* Clone.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Clone.swift; sourceTree = ""; };
- 44FDBB3327B4177C005A201B /* VMStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VMStorage.swift; sourceTree = ""; };
- 44FDBB3927B43CCF005A201B /* tart-tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "tart-tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
- 44FDBB4127B43E6D005A201B /* VM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VM.swift; sourceTree = ""; };
- 44FDBB4327B4445E005A201B /* Root.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Root.swift; sourceTree = ""; };
- 44FDBB4527B44B35005A201B /* VMConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VMConfig.swift; sourceTree = ""; };
- 44FDBB4727B45EA1005A201B /* Delete.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Delete.swift; sourceTree = ""; };
- 44FDBB4927B45F6F005A201B /* List.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = List.swift; sourceTree = ""; };
- 44FDBB4B27B69515005A201B /* VMDirectory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VMDirectory.swift; sourceTree = ""; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 4473E1DE27A94E27000850C3 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 440478FB27B134E10028EFB8 /* ArgumentParser in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 44FDBB3627B43CCF005A201B /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 4473E1D827A94E27000850C3 = {
- isa = PBXGroup;
- children = (
- 4473E1E327A94E27000850C3 /* Sources */,
- 4473E1E227A94E27000850C3 /* Products */,
- );
- sourceTree = "";
- };
- 4473E1E227A94E27000850C3 /* Products */ = {
- isa = PBXGroup;
- children = (
- 4473E1E127A94E27000850C3 /* tart */,
- 44FDBB3927B43CCF005A201B /* tart-tests.xctest */,
- );
- name = Products;
- sourceTree = "";
- };
- 4473E1E327A94E27000850C3 /* Sources */ = {
- isa = PBXGroup;
- children = (
- 44FDBB4F27B6A4B6005A201B /* tart */,
- );
- path = Sources;
- sourceTree = "";
- };
- 4484BA6D27BF1F6D0043A359 /* ARP */ = {
- isa = PBXGroup;
- children = (
- 4484BA6E27BF1F6D0043A359 /* ARPCache.swift */,
- 4484BA6F27BF1F6D0043A359 /* MACAddress.swift */,
- );
- path = ARP;
- sourceTree = "";
- };
- 44FDBB4027B43DCB005A201B /* Commands */ = {
- isa = PBXGroup;
- children = (
- 4484BA6A27BF1F270043A359 /* IP.swift */,
- 440478FC27B1352C0028EFB8 /* Create.swift */,
- 440478FE27B13D590028EFB8 /* Run.swift */,
- 44FDBB4327B4445E005A201B /* Root.swift */,
- 44FDBB4727B45EA1005A201B /* Delete.swift */,
- 44FDBB4927B45F6F005A201B /* List.swift */,
- 44DD8D8C27C596B300BB9041 /* Clone.swift */,
- );
- path = Commands;
- sourceTree = "";
- };
- 44FDBB4F27B6A4B6005A201B /* tart */ = {
- isa = PBXGroup;
- children = (
- 4484BA6D27BF1F6D0043A359 /* ARP */,
- 44FDBB4027B43DCB005A201B /* Commands */,
- 4473E1E427A94E28000850C3 /* main.swift */,
- 44FDBB3327B4177C005A201B /* VMStorage.swift */,
- 44FDBB4127B43E6D005A201B /* VM.swift */,
- 44FDBB4527B44B35005A201B /* VMConfig.swift */,
- 44FDBB4B27B69515005A201B /* VMDirectory.swift */,
- );
- path = tart;
- sourceTree = "";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 4473E1E027A94E27000850C3 /* tart */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 4473E1E827A94E28000850C3 /* Build configuration list for PBXNativeTarget "tart" */;
- buildPhases = (
- 4473E1DD27A94E27000850C3 /* Sources */,
- 4473E1DE27A94E27000850C3 /* Frameworks */,
- 4473E1DF27A94E27000850C3 /* CopyFiles */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = tart;
- packageProductDependencies = (
- 440478FA27B134E10028EFB8 /* ArgumentParser */,
- );
- productName = tart;
- productReference = 4473E1E127A94E27000850C3 /* tart */;
- productType = "com.apple.product-type.tool";
- };
- 44FDBB3827B43CCF005A201B /* tart-tests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 44FDBB3D27B43CCF005A201B /* Build configuration list for PBXNativeTarget "tart-tests" */;
- buildPhases = (
- 44FDBB3527B43CCF005A201B /* Sources */,
- 44FDBB3627B43CCF005A201B /* Frameworks */,
- 44FDBB3727B43CCF005A201B /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "tart-tests";
- productName = "tart-tests";
- productReference = 44FDBB3927B43CCF005A201B /* tart-tests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 4473E1D927A94E27000850C3 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- BuildIndependentTargetsInParallel = 1;
- LastSwiftUpdateCheck = 1320;
- LastUpgradeCheck = 1320;
- TargetAttributes = {
- 4473E1E027A94E27000850C3 = {
- CreatedOnToolsVersion = 13.2.1;
- };
- 44FDBB3827B43CCF005A201B = {
- CreatedOnToolsVersion = 13.2.1;
- };
- };
- };
- buildConfigurationList = 4473E1DC27A94E27000850C3 /* Build configuration list for PBXProject "tart" */;
- compatibilityVersion = "Xcode 13.0";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 4473E1D827A94E27000850C3;
- packageReferences = (
- 440478F927B134E10028EFB8 /* XCRemoteSwiftPackageReference "swift-argument-parser" */,
- );
- productRefGroup = 4473E1E227A94E27000850C3 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 4473E1E027A94E27000850C3 /* tart */,
- 44FDBB3827B43CCF005A201B /* tart-tests */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 44FDBB3727B43CCF005A201B /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 4473E1DD27A94E27000850C3 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 440478FF27B13D590028EFB8 /* Run.swift in Sources */,
- 4473E1E527A94E28000850C3 /* main.swift in Sources */,
- 44FDBB4827B45EA1005A201B /* Delete.swift in Sources */,
- 4484BA6B27BF1F270043A359 /* IP.swift in Sources */,
- 4484BA7027BF1F6D0043A359 /* ARPCache.swift in Sources */,
- 44FDBB3427B4177C005A201B /* VMStorage.swift in Sources */,
- 44FDBB4627B44B35005A201B /* VMConfig.swift in Sources */,
- 44FDBB4227B43E6D005A201B /* VM.swift in Sources */,
- 44FDBB4C27B69515005A201B /* VMDirectory.swift in Sources */,
- 4484BA7127BF1F6D0043A359 /* MACAddress.swift in Sources */,
- 440478FD27B1352C0028EFB8 /* Create.swift in Sources */,
- 44DD8D8D27C596B300BB9041 /* Clone.swift in Sources */,
- 44FDBB4427B4445E005A201B /* Root.swift in Sources */,
- 44FDBB4A27B45F6F005A201B /* List.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 44FDBB3527B43CCF005A201B /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin XCBuildConfiguration section */
- 4473E1E627A94E28000850C3 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- MACOSX_DEPLOYMENT_TARGET = 12.1;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = macosx;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- };
- name = Debug;
- };
- 4473E1E727A94E28000850C3 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- MACOSX_DEPLOYMENT_TARGET = 12.1;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- SDKROOT = macosx;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- };
- name = Release;
- };
- 4473E1E927A94E28000850C3 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = arm64;
- CODE_SIGN_STYLE = Automatic;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- };
- name = Debug;
- };
- 4473E1EA27A94E28000850C3 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = arm64;
- CODE_SIGN_STYLE = Automatic;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_VERSION = 5.0;
- };
- name = Release;
- };
- 44FDBB3E27B43CCF005A201B /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- GENERATE_INFOPLIST_FILE = YES;
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = "org.cirruslabs.tart-tests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- SWIFT_VERSION = 5.0;
- };
- name = Debug;
- };
- 44FDBB3F27B43CCF005A201B /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- GENERATE_INFOPLIST_FILE = YES;
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = "org.cirruslabs.tart-tests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- SWIFT_VERSION = 5.0;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 4473E1DC27A94E27000850C3 /* Build configuration list for PBXProject "tart" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 4473E1E627A94E28000850C3 /* Debug */,
- 4473E1E727A94E28000850C3 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 4473E1E827A94E28000850C3 /* Build configuration list for PBXNativeTarget "tart" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 4473E1E927A94E28000850C3 /* Debug */,
- 4473E1EA27A94E28000850C3 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 44FDBB3D27B43CCF005A201B /* Build configuration list for PBXNativeTarget "tart-tests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 44FDBB3E27B43CCF005A201B /* Debug */,
- 44FDBB3F27B43CCF005A201B /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
-
-/* Begin XCRemoteSwiftPackageReference section */
- 440478F927B134E10028EFB8 /* XCRemoteSwiftPackageReference "swift-argument-parser" */ = {
- isa = XCRemoteSwiftPackageReference;
- repositoryURL = "https://github.com/apple/swift-argument-parser.git";
- requirement = {
- kind = upToNextMajorVersion;
- minimumVersion = 1.0.0;
- };
- };
-/* End XCRemoteSwiftPackageReference section */
-
-/* Begin XCSwiftPackageProductDependency section */
- 440478FA27B134E10028EFB8 /* ArgumentParser */ = {
- isa = XCSwiftPackageProductDependency;
- package = 440478F927B134E10028EFB8 /* XCRemoteSwiftPackageReference "swift-argument-parser" */;
- productName = ArgumentParser;
- };
-/* End XCSwiftPackageProductDependency section */
- };
- rootObject = 4473E1D927A94E27000850C3 /* Project object */;
-}
diff --git a/tart.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/tart.xcodeproj/project.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 919434a..0000000
--- a/tart.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
diff --git a/tart.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/tart.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
deleted file mode 100644
index 9004fb5..0000000
--- a/tart.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "object": {
- "pins": [
- {
- "package": "swift-argument-parser",
- "repositoryURL": "https://github.com/apple/swift-argument-parser.git",
- "state": {
- "branch": null,
- "revision": "e394bf350e38cb100b6bc4172834770ede1b7232",
- "version": "1.0.3"
- }
- }
- ]
- },
- "version": 1
-}