diff --git a/.gitignore b/.gitignore
index 84cbb2c..478f3b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,3 +36,5 @@ Cargo.lock
*.njsproj
*.sln
*.sw?
+src-tauri/gen
+src-tauri/target
\ No newline at end of file
diff --git a/src-tauri/gen/android/.editorconfig b/src-tauri/gen/android/.editorconfig
deleted file mode 100644
index ebe51d3..0000000
--- a/src-tauri/gen/android/.editorconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-# EditorConfig is awesome: https://EditorConfig.org
-
-# top-most EditorConfig file
-root = true
-
-[*]
-indent_style = space
-indent_size = 2
-end_of_line = lf
-charset = utf-8
-trim_trailing_whitespace = false
-insert_final_newline = false
\ No newline at end of file
diff --git a/src-tauri/gen/android/.gitignore b/src-tauri/gen/android/.gitignore
deleted file mode 100644
index b248203..0000000
--- a/src-tauri/gen/android/.gitignore
+++ /dev/null
@@ -1,19 +0,0 @@
-*.iml
-.gradle
-/local.properties
-/.idea/caches
-/.idea/libraries
-/.idea/modules.xml
-/.idea/workspace.xml
-/.idea/navEditor.xml
-/.idea/assetWizardSettings.xml
-.DS_Store
-build
-/captures
-.externalNativeBuild
-.cxx
-local.properties
-key.properties
-
-/.tauri
-/tauri.settings.gradle
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/.gitignore b/src-tauri/gen/android/app/.gitignore
deleted file mode 100644
index 49dea2b..0000000
--- a/src-tauri/gen/android/app/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-/src/main/java/citadel/citadel_workspace/generated
-/src/main/jniLibs/**/*.so
-/src/main/assets/tauri.conf.json
-/tauri.build.gradle.kts
-/proguard-tauri.pro
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/build.gradle.kts b/src-tauri/gen/android/app/build.gradle.kts
deleted file mode 100644
index ddde917..0000000
--- a/src-tauri/gen/android/app/build.gradle.kts
+++ /dev/null
@@ -1,57 +0,0 @@
-plugins {
- id("com.android.application")
- id("org.jetbrains.kotlin.android")
- id("rust")
-}
-
-android {
- compileSdk = 33
- namespace = "citadel.citadel_workspace"
- defaultConfig {
- manifestPlaceholders["usesCleartextTraffic"] = "false"
- applicationId = "citadel.citadel_workspace"
- minSdk = 24
- targetSdk = 33
- versionCode = 1
- versionName = "1.0"
- }
- buildTypes {
- getByName("debug") {
- manifestPlaceholders["usesCleartextTraffic"] = "true"
- isDebuggable = true
- isJniDebuggable = true
- isMinifyEnabled = false
- packaging { jniLibs.keepDebugSymbols.add("*/arm64-v8a/*.so")
- jniLibs.keepDebugSymbols.add("*/armeabi-v7a/*.so")
- jniLibs.keepDebugSymbols.add("*/x86/*.so")
- jniLibs.keepDebugSymbols.add("*/x86_64/*.so")
- }
- }
- getByName("release") {
- isMinifyEnabled = true
- proguardFiles(
- *fileTree(".") { include("**/*.pro") }
- .plus(getDefaultProguardFile("proguard-android-optimize.txt"))
- .toList().toTypedArray()
- )
- }
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
-}
-
-rust {
- rootDirRel = "../../../"
-}
-
-dependencies {
- implementation("androidx.webkit:webkit:1.6.1")
- implementation("androidx.appcompat:appcompat:1.6.1")
- implementation("com.google.android.material:material:1.8.0")
- testImplementation("junit:junit:4.13.2")
- androidTestImplementation("androidx.test.ext:junit:1.1.4")
- androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
-}
-
-apply(from = "tauri.build.gradle.kts")
diff --git a/src-tauri/gen/android/app/proguard-rules.pro b/src-tauri/gen/android/app/proguard-rules.pro
deleted file mode 100644
index 481bb43..0000000
--- a/src-tauri/gen/android/app/proguard-rules.pro
+++ /dev/null
@@ -1,21 +0,0 @@
-# Add project specific ProGuard rules here.
-# You can control the set of applied configuration files using the
-# proguardFiles setting in build.gradle.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# If your project uses WebView with JS, uncomment the following
-# and specify the fully qualified class name to the JavaScript interface
-# class:
-#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
-# public *;
-#}
-
-# Uncomment this to preserve the line number information for
-# debugging stack traces.
-#-keepattributes SourceFile,LineNumberTable
-
-# If you keep the line number information, uncomment this to
-# hide the original source file name.
-#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/AndroidManifest.xml b/src-tauri/gen/android/app/src/main/AndroidManifest.xml
deleted file mode 100644
index 82e9d3d..0000000
--- a/src-tauri/gen/android/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src-tauri/gen/android/app/src/main/java/citadel/citadel_workspace/MainActivity.kt b/src-tauri/gen/android/app/src/main/java/citadel/citadel_workspace/MainActivity.kt
deleted file mode 100644
index f89b2d3..0000000
--- a/src-tauri/gen/android/app/src/main/java/citadel/citadel_workspace/MainActivity.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package citadel.citadel_workspace
-
-class MainActivity : TauriActivity()
diff --git a/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
deleted file mode 100644
index 2b068d1..0000000
--- a/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml b/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml
deleted file mode 100644
index 07d5da9..0000000
--- a/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml
+++ /dev/null
@@ -1,170 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml b/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml
deleted file mode 100644
index 4fc2444..0000000
--- a/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 28f1aa1..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
deleted file mode 100644
index 85d0c88..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
deleted file mode 100644
index 28f1aa1..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 73e48db..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
deleted file mode 100644
index 13dd214..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
deleted file mode 100644
index 73e48db..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 1d98044..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
deleted file mode 100644
index a888b33..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
deleted file mode 100644
index 1d98044..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 0818324..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
deleted file mode 100644
index a2a838e..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
deleted file mode 100644
index 0818324..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index b18bceb..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
deleted file mode 100644
index 3f8a57f..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
deleted file mode 100644
index b18bceb..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/values-night/themes.xml b/src-tauri/gen/android/app/src/main/res/values-night/themes.xml
deleted file mode 100644
index 3cae047..0000000
--- a/src-tauri/gen/android/app/src/main/res/values-night/themes.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
diff --git a/src-tauri/gen/android/app/src/main/res/values/colors.xml b/src-tauri/gen/android/app/src/main/res/values/colors.xml
deleted file mode 100644
index f8c6127..0000000
--- a/src-tauri/gen/android/app/src/main/res/values/colors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- #FFBB86FC
- #FF6200EE
- #FF3700B3
- #FF03DAC5
- #FF018786
- #FF000000
- #FFFFFFFF
-
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/res/values/strings.xml b/src-tauri/gen/android/app/src/main/res/values/strings.xml
deleted file mode 100644
index 76ad555..0000000
--- a/src-tauri/gen/android/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
- citadel_workspace
- citadel_workspace
-
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/res/values/themes.xml b/src-tauri/gen/android/app/src/main/res/values/themes.xml
deleted file mode 100644
index 3cae047..0000000
--- a/src-tauri/gen/android/app/src/main/res/values/themes.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
diff --git a/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml b/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml
deleted file mode 100644
index 782d63b..0000000
--- a/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/src-tauri/gen/android/build.gradle.kts b/src-tauri/gen/android/build.gradle.kts
deleted file mode 100644
index 5ce764e..0000000
--- a/src-tauri/gen/android/build.gradle.kts
+++ /dev/null
@@ -1,22 +0,0 @@
-buildscript {
- repositories {
- google()
- mavenCentral()
- }
- dependencies {
- classpath("com.android.tools.build:gradle:8.0.0")
- classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21")
- }
-}
-
-allprojects {
- repositories {
- google()
- mavenCentral()
- }
-}
-
-tasks.register("clean").configure {
- delete("build")
-}
-
diff --git a/src-tauri/gen/android/buildSrc/build.gradle.kts b/src-tauri/gen/android/buildSrc/build.gradle.kts
deleted file mode 100644
index 099feff..0000000
--- a/src-tauri/gen/android/buildSrc/build.gradle.kts
+++ /dev/null
@@ -1,23 +0,0 @@
-plugins {
- `kotlin-dsl`
-}
-
-gradlePlugin {
- plugins {
- create("pluginsForCoolKids") {
- id = "rust"
- implementationClass = "RustPlugin"
- }
- }
-}
-
-repositories {
- google()
- mavenCentral()
-}
-
-dependencies {
- compileOnly(gradleApi())
- implementation("com.android.tools.build:gradle:8.0.0")
-}
-
diff --git a/src-tauri/gen/android/buildSrc/src/main/java/citadel/citadel_workspace/kotlin/BuildTask.kt b/src-tauri/gen/android/buildSrc/src/main/java/citadel/citadel_workspace/kotlin/BuildTask.kt
deleted file mode 100644
index c9d4780..0000000
--- a/src-tauri/gen/android/buildSrc/src/main/java/citadel/citadel_workspace/kotlin/BuildTask.kt
+++ /dev/null
@@ -1,52 +0,0 @@
-import java.io.File
-import org.apache.tools.ant.taskdefs.condition.Os
-import org.gradle.api.DefaultTask
-import org.gradle.api.GradleException
-import org.gradle.api.logging.LogLevel
-import org.gradle.api.tasks.Input
-import org.gradle.api.tasks.TaskAction
-
-open class BuildTask : DefaultTask() {
- @Input
- var rootDirRel: String? = null
- @Input
- var target: String? = null
- @Input
- var release: Boolean? = null
-
- @TaskAction
- fun assemble() {
- val executable = """../../../.cargo/bin/cargo-tauri""";
- try {
- runTauriCli(executable)
- } catch (e: Exception) {
- if (Os.isFamily(Os.FAMILY_WINDOWS)) {
- runTauriCli("$executable.cmd")
- } else {
- throw e;
- }
- }
- }
-
- fun runTauriCli(executable: String) {
- val rootDirRel = rootDirRel ?: throw GradleException("rootDirRel cannot be null")
- val target = target ?: throw GradleException("target cannot be null")
- val release = release ?: throw GradleException("release cannot be null")
- val args = listOf("tauri", "android", "android-studio-script");
-
- project.exec {
- workingDir(File(project.projectDir, rootDirRel))
- executable(executable)
- args(args)
- if (project.logger.isEnabled(LogLevel.DEBUG)) {
- args("-vv")
- } else if (project.logger.isEnabled(LogLevel.INFO)) {
- args("-v")
- }
- if (release) {
- args("--release")
- }
- args(listOf("--target", target))
- }.assertNormalExitValue()
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/android/buildSrc/src/main/java/citadel/citadel_workspace/kotlin/RustPlugin.kt b/src-tauri/gen/android/buildSrc/src/main/java/citadel/citadel_workspace/kotlin/RustPlugin.kt
deleted file mode 100644
index 4aa7fca..0000000
--- a/src-tauri/gen/android/buildSrc/src/main/java/citadel/citadel_workspace/kotlin/RustPlugin.kt
+++ /dev/null
@@ -1,85 +0,0 @@
-import com.android.build.api.dsl.ApplicationExtension
-import org.gradle.api.DefaultTask
-import org.gradle.api.Plugin
-import org.gradle.api.Project
-import org.gradle.kotlin.dsl.configure
-import org.gradle.kotlin.dsl.get
-
-const val TASK_GROUP = "rust"
-
-open class Config {
- lateinit var rootDirRel: String
-}
-
-open class RustPlugin : Plugin {
- private lateinit var config: Config
-
- override fun apply(project: Project) = with(project) {
- config = extensions.create("rust", Config::class.java)
-
- val defaultAbiList = listOf("arm64-v8a", "armeabi-v7a", "x86", "x86_64");
- val abiList = (findProperty("abiList") as? String)?.split(',') ?: defaultAbiList
-
- val defaultArchList = listOf("arm64", "arm", "x86", "x86_64");
- val archList = (findProperty("archList") as? String)?.split(',') ?: defaultArchList
-
- val targetsList = (findProperty("targetList") as? String)?.split(',') ?: listOf("aarch64", "armv7", "i686", "x86_64")
-
- extensions.configure {
- @Suppress("UnstableApiUsage")
- flavorDimensions.add("abi")
- productFlavors {
- create("universal") {
- dimension = "abi"
- ndk {
- abiFilters += abiList
- }
- }
- defaultArchList.forEachIndexed { index, arch ->
- create(arch) {
- dimension = "abi"
- ndk {
- abiFilters.add(defaultAbiList[index])
- }
- }
- }
- }
- }
-
- afterEvaluate {
- for (profile in listOf("debug", "release")) {
- val profileCapitalized = profile.replaceFirstChar { it.uppercase() }
- val buildTask = tasks.maybeCreate(
- "rustBuildUniversal$profileCapitalized",
- DefaultTask::class.java
- ).apply {
- group = TASK_GROUP
- description = "Build dynamic library in $profile mode for all targets"
- }
-
- tasks["mergeUniversal${profileCapitalized}JniLibFolders"].dependsOn(buildTask)
-
- for (targetPair in targetsList.withIndex()) {
- val targetName = targetPair.value
- val targetArch = archList[targetPair.index]
- val targetArchCapitalized = targetArch.replaceFirstChar { it.uppercase() }
- val targetBuildTask = project.tasks.maybeCreate(
- "rustBuild$targetArchCapitalized$profileCapitalized",
- BuildTask::class.java
- ).apply {
- group = TASK_GROUP
- description = "Build dynamic library in $profile mode for $targetArch"
- rootDirRel = config.rootDirRel
- target = targetName
- release = profile == "release"
- }
-
- buildTask.dependsOn(targetBuildTask)
- tasks["merge$targetArchCapitalized${profileCapitalized}JniLibFolders"].dependsOn(
- targetBuildTask
- )
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/android/gradle.properties b/src-tauri/gen/android/gradle.properties
deleted file mode 100644
index 022338b..0000000
--- a/src-tauri/gen/android/gradle.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-# Project-wide Gradle settings.
-# IDE (e.g. Android Studio) users:
-# Gradle settings configured through the IDE *will override*
-# any settings specified in this file.
-# For more details on how to configure your build environment visit
-# http://www.gradle.org/docs/current/userguide/build_environment.html
-# Specifies the JVM arguments used for the daemon process.
-# The setting is particularly useful for tweaking memory settings.
-org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
-# When configured, Gradle will run in incubating parallel mode.
-# This option should only be used with decoupled projects. More details, visit
-# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
-# org.gradle.parallel=true
-# AndroidX package structure to make it clearer which packages are bundled with the
-# Android operating system, and which are packaged with your app"s APK
-# https://developer.android.com/topic/libraries/support-library/androidx-rn
-android.useAndroidX=true
-# Kotlin code style for this project: "official" or "obsolete":
-kotlin.code.style=official
-# Enables namespacing of each library's R class so that its R class includes only the
-# resources declared in the library itself and none from the library's dependencies,
-# thereby reducing the size of the R class for that library
-android.nonTransitiveRClass=true
-android.defaults.buildfeatures.buildconfig=true
-android.nonFinalResIds=false
\ No newline at end of file
diff --git a/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar b/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index e708b1c..0000000
Binary files a/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties b/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 40a4350..0000000
--- a/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-#Tue May 10 19:22:52 CST 2022
-distributionBase=GRADLE_USER_HOME
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
-distributionPath=wrapper/dists
-zipStorePath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
diff --git a/src-tauri/gen/android/gradlew b/src-tauri/gen/android/gradlew
deleted file mode 100755
index 4f906e0..0000000
--- a/src-tauri/gen/android/gradlew
+++ /dev/null
@@ -1,185 +0,0 @@
-#!/usr/bin/env sh
-
-#
-# Copyright 2015 the original author or authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# https://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-##############################################################################
-##
-## Gradle start up script for UN*X
-##
-##############################################################################
-
-# Attempt to set APP_HOME
-# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
-done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
-
-APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
-
-warn () {
- echo "$*"
-}
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-}
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
-esac
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD="java"
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
-fi
-
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
-
-# For Cygwin or MSYS, switch paths to Windows format before running java
-if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
-
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
- fi
- i=`expr $i + 1`
- done
- case $i in
- 0) set -- ;;
- 1) set -- "$args0" ;;
- 2) set -- "$args0" "$args1" ;;
- 3) set -- "$args0" "$args1" "$args2" ;;
- 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
-fi
-
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=`save "$@"`
-
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
-
-exec "$JAVACMD" "$@"
diff --git a/src-tauri/gen/android/gradlew.bat b/src-tauri/gen/android/gradlew.bat
deleted file mode 100644
index 107acd3..0000000
--- a/src-tauri/gen/android/gradlew.bat
+++ /dev/null
@@ -1,89 +0,0 @@
-@rem
-@rem Copyright 2015 the original author or authors.
-@rem
-@rem Licensed under the Apache License, Version 2.0 (the "License");
-@rem you may not use this file except in compliance with the License.
-@rem You may obtain a copy of the License at
-@rem
-@rem https://www.apache.org/licenses/LICENSE-2.0
-@rem
-@rem Unless required by applicable law or agreed to in writing, software
-@rem distributed under the License is distributed on an "AS IS" BASIS,
-@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-@rem See the License for the specific language governing permissions and
-@rem limitations under the License.
-@rem
-
-@if "%DEBUG%" == "" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Resolve any "." and ".." in APP_HOME to make it shorter.
-for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto execute
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto execute
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
-
-:end
-@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/src-tauri/gen/android/settings.gradle b/src-tauri/gen/android/settings.gradle
deleted file mode 100644
index 3939116..0000000
--- a/src-tauri/gen/android/settings.gradle
+++ /dev/null
@@ -1,3 +0,0 @@
-include ':app'
-
-apply from: 'tauri.settings.gradle'
diff --git a/src-tauri/gen/apple/.gitignore b/src-tauri/gen/apple/.gitignore
deleted file mode 100644
index 6726e2f..0000000
--- a/src-tauri/gen/apple/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-xcuserdata/
-build/
-Externals/
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png
deleted file mode 100644
index f8b128e..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png
deleted file mode 100644
index 6bbd9e3..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png
deleted file mode 100644
index 6bbd9e3..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png
deleted file mode 100644
index f702cc0..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png
deleted file mode 100644
index c5e92f7..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png
deleted file mode 100644
index 1c607d5..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png
deleted file mode 100644
index 1c607d5..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png
deleted file mode 100644
index 60e93a6..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png
deleted file mode 100644
index 6bbd9e3..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png
deleted file mode 100644
index 819410f..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png
deleted file mode 100644
index 819410f..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png
deleted file mode 100644
index e00ae5a..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png
deleted file mode 100644
index f5301f3..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512x512@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512x512@2x.png
deleted file mode 100644
index 5e9add7..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512x512@2x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png
deleted file mode 100644
index e00ae5a..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png
deleted file mode 100644
index 3546ca1..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png
deleted file mode 100644
index d836710..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png
deleted file mode 100644
index 29925f2..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png
deleted file mode 100644
index dfd2261..0000000
Binary files a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png and /dev/null differ
diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/Contents.json b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/Contents.json
deleted file mode 100644
index 90eea7e..0000000
--- a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/Contents.json
+++ /dev/null
@@ -1,116 +0,0 @@
-{
- "images" : [
- {
- "size" : "20x20",
- "idiom" : "iphone",
- "filename" : "AppIcon-20x20@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "20x20",
- "idiom" : "iphone",
- "filename" : "AppIcon-20x20@3x.png",
- "scale" : "3x"
- },
- {
- "size" : "29x29",
- "idiom" : "iphone",
- "filename" : "AppIcon-29x29@2x-1.png",
- "scale" : "2x"
- },
- {
- "size" : "29x29",
- "idiom" : "iphone",
- "filename" : "AppIcon-29x29@3x.png",
- "scale" : "3x"
- },
- {
- "size" : "40x40",
- "idiom" : "iphone",
- "filename" : "AppIcon-40x40@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "40x40",
- "idiom" : "iphone",
- "filename" : "AppIcon-40x40@3x.png",
- "scale" : "3x"
- },
- {
- "size" : "60x60",
- "idiom" : "iphone",
- "filename" : "AppIcon-60x60@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "60x60",
- "idiom" : "iphone",
- "filename" : "AppIcon-60x60@3x.png",
- "scale" : "3x"
- },
- {
- "size" : "20x20",
- "idiom" : "ipad",
- "filename" : "AppIcon-20x20@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "20x20",
- "idiom" : "ipad",
- "filename" : "AppIcon-20x20@2x-1.png",
- "scale" : "2x"
- },
- {
- "size" : "29x29",
- "idiom" : "ipad",
- "filename" : "AppIcon-29x29@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "29x29",
- "idiom" : "ipad",
- "filename" : "AppIcon-29x29@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "40x40",
- "idiom" : "ipad",
- "filename" : "AppIcon-40x40@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "40x40",
- "idiom" : "ipad",
- "filename" : "AppIcon-40x40@2x-1.png",
- "scale" : "2x"
- },
- {
- "size" : "76x76",
- "idiom" : "ipad",
- "filename" : "AppIcon-76x76@1x.png",
- "scale" : "1x"
- },
- {
- "size" : "76x76",
- "idiom" : "ipad",
- "filename" : "AppIcon-76x76@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "83.5x83.5",
- "idiom" : "ipad",
- "filename" : "AppIcon-83.5x83.5@2x.png",
- "scale" : "2x"
- },
- {
- "size" : "1024x1024",
- "idiom" : "ios-marketing",
- "filename" : "AppIcon-512@2x.png",
- "scale" : "1x"
- }
- ],
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/apple/Assets.xcassets/Contents.json b/src-tauri/gen/apple/Assets.xcassets/Contents.json
deleted file mode 100644
index da4a164..0000000
--- a/src-tauri/gen/apple/Assets.xcassets/Contents.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/apple/ExportOptions.plist b/src-tauri/gen/apple/ExportOptions.plist
deleted file mode 100644
index b69cf1d..0000000
--- a/src-tauri/gen/apple/ExportOptions.plist
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
- method
- development
-
-
diff --git a/src-tauri/gen/apple/Podfile b/src-tauri/gen/apple/Podfile
deleted file mode 100644
index 6fc8613..0000000
--- a/src-tauri/gen/apple/Podfile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Uncomment the next line to define a global platform for your project
-
-target 'citadel_workspace_iOS' do
-platform :ios, '13.0'
- # Pods for citadel_workspace_iOS
-end
-
-target 'citadel_workspace_macOS' do
-platform :osx, '11.0'
- # Pods for citadel_workspace_macOS
-end
-
-# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile
-post_install do |installer|
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
- config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET'
- end
- end
-end
diff --git a/src-tauri/gen/apple/Sources/citadel_workspace/bindings/bindings.h b/src-tauri/gen/apple/Sources/citadel_workspace/bindings/bindings.h
deleted file mode 100644
index 5152200..0000000
--- a/src-tauri/gen/apple/Sources/citadel_workspace/bindings/bindings.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#pragma once
-
-namespace ffi {
- extern "C" {
- void start_app();
- }
-}
-
diff --git a/src-tauri/gen/apple/Sources/citadel_workspace/main.mm b/src-tauri/gen/apple/Sources/citadel_workspace/main.mm
deleted file mode 100644
index 7793a9d..0000000
--- a/src-tauri/gen/apple/Sources/citadel_workspace/main.mm
+++ /dev/null
@@ -1,6 +0,0 @@
-#include "bindings/bindings.h"
-
-int main(int argc, char * argv[]) {
- ffi::start_app();
- return 0;
-}
diff --git a/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.pbxproj b/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.pbxproj
deleted file mode 100644
index 8a377b0..0000000
--- a/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,505 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 54;
- objects = {
-
-/* Begin PBXBuildFile section */
- 0094A7F7A409FFA36087E72D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E4F4FFC7743FC6E24866E21A /* Assets.xcassets */; };
- 0EFFAEAF53D99B6B977BD2D0 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A0ABDE8E4B5FCF3AFDCD227D /* Security.framework */; };
- 3ECF8993C6E8710032D61A24 /* main.mm in Sources */ = {isa = PBXBuildFile; fileRef = 321EB696AFE7CECE3B6C3D92 /* main.mm */; };
- 471148AEEB720F0815338526 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7D31C4E2B2D57E0A06F41A2 /* WebKit.framework */; };
- 4E39987916EA919585818B31 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B5B56AEDC9DC218FF48A81FA /* UIKit.framework */; };
- 666570FB3F452B24A15F184C /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D05C62BAF378F2445FB8C890 /* QuartzCore.framework */; };
- B311740F6347716A4CB896A6 /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 51174CA353E4E7F269579907 /* MetalKit.framework */; };
- C01073D195119300EAD249B0 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8D45C25019E6F88D428F0BB5 /* CoreGraphics.framework */; };
- CEE5F5F822980A75A8F2558E /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C8A325B68ED4CF3EFA6CD811 /* Metal.framework */; };
- CF96B5AACF93C7BA58F61D9A /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 123F0618D5AA1D94E6536C9A /* assets */; };
- E01FB3D62E3FA078346EADE1 /* libcitadel_workspace_ui_lib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 949EE291919EA94EBFD99EC8 /* libcitadel_workspace_ui_lib.a */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 123F0618D5AA1D94E6536C9A /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; path = assets; sourceTree = SOURCE_ROOT; };
- 245FC782756A3713C170B0D3 /* peer_register.rs */ = {isa = PBXFileReference; path = peer_register.rs; sourceTree = ""; };
- 30E72C16008FDAD461C30DE5 /* citadel_workspace_iOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = citadel_workspace_iOS.entitlements; sourceTree = ""; };
- 321EB696AFE7CECE3B6C3D92 /* main.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = main.mm; sourceTree = ""; };
- 382C04ECD17E6F4E896D231D /* types.rs */ = {isa = PBXFileReference; path = types.rs; sourceTree = ""; };
- 43189EEF915859993D66E81E /* connect.rs */ = {isa = PBXFileReference; path = connect.rs; sourceTree = ""; };
- 51174CA353E4E7F269579907 /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; };
- 629DC8D4DE50D476FEF5975F /* peer_connect.rs */ = {isa = PBXFileReference; path = peer_connect.rs; sourceTree = ""; };
- 6DEF04B4E2D47E4418DFF3A6 /* mod.rs */ = {isa = PBXFileReference; path = mod.rs; sourceTree = ""; };
- 706C658B10EB8A7300290E79 /* message.rs */ = {isa = PBXFileReference; path = message.rs; sourceTree = ""; };
- 8C90E550A70BFD26213C571D /* register.rs */ = {isa = PBXFileReference; path = register.rs; sourceTree = ""; };
- 8D45C25019E6F88D428F0BB5 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 949EE291919EA94EBFD99EC8 /* libcitadel_workspace_ui_lib.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcitadel_workspace_ui_lib.a; sourceTree = ""; };
- 9E885DF49A28ED1BD0EA3295 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; };
- A055D5546A827A2B0F061B50 /* get_session.rs */ = {isa = PBXFileReference; path = get_session.rs; sourceTree = ""; };
- A0ABDE8E4B5FCF3AFDCD227D /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
- A3D120098E5B955AA2CA0CAC /* bindings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bindings.h; sourceTree = ""; };
- A7D31C4E2B2D57E0A06F41A2 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
- B5B56AEDC9DC218FF48A81FA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- B87712125BB1D4B0290B38F3 /* lib.rs */ = {isa = PBXFileReference; path = lib.rs; sourceTree = ""; };
- BEB166CE07B823E110C25DB8 /* mod.rs */ = {isa = PBXFileReference; path = mod.rs; sourceTree = ""; };
- C8A325B68ED4CF3EFA6CD811 /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; };
- D05C62BAF378F2445FB8C890 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
- DCB822DD7351BAB7B53F65EF /* main.rs */ = {isa = PBXFileReference; path = main.rs; sourceTree = ""; };
- E4F4FFC7743FC6E24866E21A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
- E8EEDEB56CC5763F70055817 /* disconnect.rs */ = {isa = PBXFileReference; path = disconnect.rs; sourceTree = ""; };
- EFF935B5BA7F8EBD7D238053 /* structs.rs */ = {isa = PBXFileReference; path = structs.rs; sourceTree = ""; };
- F12D0AEC1744C400F9E692E7 /* list_all_peers.rs */ = {isa = PBXFileReference; path = list_all_peers.rs; sourceTree = ""; };
- FA01C474797640CCFE596EC2 /* peer_disconnect.rs */ = {isa = PBXFileReference; path = peer_disconnect.rs; sourceTree = ""; };
- FB1C3A875CE1DA1E8774B6BE /* citadel_workspace_iOS.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = citadel_workspace_iOS.app; sourceTree = BUILT_PRODUCTS_DIR; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- C1AADB34DCC16F94B580F4D0 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- E01FB3D62E3FA078346EADE1 /* libcitadel_workspace_ui_lib.a in Frameworks */,
- C01073D195119300EAD249B0 /* CoreGraphics.framework in Frameworks */,
- CEE5F5F822980A75A8F2558E /* Metal.framework in Frameworks */,
- B311740F6347716A4CB896A6 /* MetalKit.framework in Frameworks */,
- 666570FB3F452B24A15F184C /* QuartzCore.framework in Frameworks */,
- 0EFFAEAF53D99B6B977BD2D0 /* Security.framework in Frameworks */,
- 4E39987916EA919585818B31 /* UIKit.framework in Frameworks */,
- 471148AEEB720F0815338526 /* WebKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 45E34453A52521163F6F6CBE /* Externals */ = {
- isa = PBXGroup;
- children = (
- );
- path = Externals;
- sourceTree = "";
- };
- 559B2C33DB4F54D47D16BCE6 /* helpers */ = {
- isa = PBXGroup;
- children = (
- 6DEF04B4E2D47E4418DFF3A6 /* mod.rs */,
- 382C04ECD17E6F4E896D231D /* types.rs */,
- );
- path = helpers;
- sourceTree = "";
- };
- 623B609188FA68A3B632194E = {
- isa = PBXGroup;
- children = (
- 123F0618D5AA1D94E6536C9A /* assets */,
- E4F4FFC7743FC6E24866E21A /* Assets.xcassets */,
- 711B66119DFAA5BDB7D430A7 /* citadel_workspace_iOS */,
- 45E34453A52521163F6F6CBE /* Externals */,
- 7839632E4403A0CE19171A6F /* Sources */,
- F55C633E234F5A8C03F1A04F /* src */,
- F21660DFD40B3BF38189D330 /* Frameworks */,
- A450B3137729827BD25B8EE4 /* Products */,
- );
- sourceTree = "";
- };
- 711B66119DFAA5BDB7D430A7 /* citadel_workspace_iOS */ = {
- isa = PBXGroup;
- children = (
- 30E72C16008FDAD461C30DE5 /* citadel_workspace_iOS.entitlements */,
- 9E885DF49A28ED1BD0EA3295 /* Info.plist */,
- );
- path = citadel_workspace_iOS;
- sourceTree = "";
- };
- 7839632E4403A0CE19171A6F /* Sources */ = {
- isa = PBXGroup;
- children = (
- D6ED16A1D94D28ECCB3380B0 /* citadel_workspace */,
- );
- path = Sources;
- sourceTree = "";
- };
- 96A8F972D78AC77F44DE29E0 /* commands */ = {
- isa = PBXGroup;
- children = (
- 43189EEF915859993D66E81E /* connect.rs */,
- E8EEDEB56CC5763F70055817 /* disconnect.rs */,
- A055D5546A827A2B0F061B50 /* get_session.rs */,
- F12D0AEC1744C400F9E692E7 /* list_all_peers.rs */,
- 706C658B10EB8A7300290E79 /* message.rs */,
- BEB166CE07B823E110C25DB8 /* mod.rs */,
- 629DC8D4DE50D476FEF5975F /* peer_connect.rs */,
- FA01C474797640CCFE596EC2 /* peer_disconnect.rs */,
- 245FC782756A3713C170B0D3 /* peer_register.rs */,
- 8C90E550A70BFD26213C571D /* register.rs */,
- );
- path = commands;
- sourceTree = "";
- };
- A450B3137729827BD25B8EE4 /* Products */ = {
- isa = PBXGroup;
- children = (
- FB1C3A875CE1DA1E8774B6BE /* citadel_workspace_iOS.app */,
- );
- name = Products;
- sourceTree = "";
- };
- AF38E9BFAE9517E914EC1408 /* bindings */ = {
- isa = PBXGroup;
- children = (
- A3D120098E5B955AA2CA0CAC /* bindings.h */,
- );
- path = bindings;
- sourceTree = "";
- };
- D6ED16A1D94D28ECCB3380B0 /* citadel_workspace */ = {
- isa = PBXGroup;
- children = (
- 321EB696AFE7CECE3B6C3D92 /* main.mm */,
- AF38E9BFAE9517E914EC1408 /* bindings */,
- );
- path = citadel_workspace;
- sourceTree = "";
- };
- F21660DFD40B3BF38189D330 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 8D45C25019E6F88D428F0BB5 /* CoreGraphics.framework */,
- 949EE291919EA94EBFD99EC8 /* libcitadel_workspace_ui_lib.a */,
- C8A325B68ED4CF3EFA6CD811 /* Metal.framework */,
- 51174CA353E4E7F269579907 /* MetalKit.framework */,
- D05C62BAF378F2445FB8C890 /* QuartzCore.framework */,
- A0ABDE8E4B5FCF3AFDCD227D /* Security.framework */,
- B5B56AEDC9DC218FF48A81FA /* UIKit.framework */,
- A7D31C4E2B2D57E0A06F41A2 /* WebKit.framework */,
- );
- name = Frameworks;
- sourceTree = "";
- };
- F55C633E234F5A8C03F1A04F /* src */ = {
- isa = PBXGroup;
- children = (
- B87712125BB1D4B0290B38F3 /* lib.rs */,
- DCB822DD7351BAB7B53F65EF /* main.rs */,
- EFF935B5BA7F8EBD7D238053 /* structs.rs */,
- 96A8F972D78AC77F44DE29E0 /* commands */,
- 559B2C33DB4F54D47D16BCE6 /* helpers */,
- );
- name = src;
- path = ../../src;
- sourceTree = "";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 6FAED52153D28534DE4B9BF7 /* citadel_workspace_iOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = EC92A1EA520A8049486D58DF /* Build configuration list for PBXNativeTarget "citadel_workspace_iOS" */;
- buildPhases = (
- E0172FD7A719E2742A12B771 /* Build Rust Code */,
- A62A18BF5E5C34CFFCDF0A82 /* Sources */,
- E1BFFA089D68929D358935B2 /* Resources */,
- C1AADB34DCC16F94B580F4D0 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = citadel_workspace_iOS;
- productName = citadel_workspace_iOS;
- productReference = FB1C3A875CE1DA1E8774B6BE /* citadel_workspace_iOS.app */;
- productType = "com.apple.product-type.application";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 9AF3B994F36DA67D3D2B35F7 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- BuildIndependentTargetsInParallel = YES;
- LastUpgradeCheck = 1430;
- TargetAttributes = {
- 6FAED52153D28534DE4B9BF7 = {
- DevelopmentTeam = V6ST62AAUZ;
- };
- };
- };
- buildConfigurationList = FA1667D4B0C2066A19F01280 /* Build configuration list for PBXProject "citadel_workspace" */;
- compatibilityVersion = "Xcode 14.0";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- Base,
- en,
- );
- mainGroup = 623B609188FA68A3B632194E;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 6FAED52153D28534DE4B9BF7 /* citadel_workspace_iOS */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- E1BFFA089D68929D358935B2 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 0094A7F7A409FFA36087E72D /* Assets.xcassets in Resources */,
- CF96B5AACF93C7BA58F61D9A /* assets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
- E0172FD7A719E2742A12B771 /* Build Rust Code */ = {
- isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = "Build Rust Code";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(SRCROOT)/target/aarch64-apple-ios/${CONFIGURATION}/deps/libcitadel_workspace_ui_lib.a",
- "$(SRCROOT)/target/x86_64-apple-ios/${CONFIGURATION}/deps/libcitadel_workspace_ui_lib.a",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "../../../../.cargo/bin/cargo-tauri tauri ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths \"${FRAMEWORK_SEARCH_PATHS:?}\" --header-search-paths \"${HEADER_SEARCH_PATHS:?}\" --gcc-preprocessor-definitions \"${GCC_PREPROCESSOR_DEFINITIONS:-}\" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?}";
- };
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- A62A18BF5E5C34CFFCDF0A82 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 3ECF8993C6E8710032D61A24 /* main.mm in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin XCBuildConfiguration section */
- 36D7E5FDFF1440FA44F9942E /* 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++14";
- 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;
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = iphoneos;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- SWIFT_VERSION = 5.0;
- };
- name = release;
- };
- 3BBFD4A193FFFCC6EF8E989C /* 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++14";
- 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 = (
- "$(inherited)",
- "DEBUG=1",
- );
- 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;
- IPHONEOS_DEPLOYMENT_TARGET = 13.0;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = iphoneos;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- };
- name = debug;
- };
- 509DE3A6299C39C00DD07EFB /* debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ARCHS = (
- arm64,
- "arm64-sim",
- );
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_ENTITLEMENTS = citadel_workspace_iOS/citadel_workspace_iOS.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- DEVELOPMENT_TEAM = V6ST62AAUZ;
- ENABLE_BITCODE = NO;
- "EXCLUDED_ARCHS[sdk=iphoneos*]" = "arm64-sim x86_64";
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "\".\"",
- );
- INFOPLIST_FILE = citadel_workspace_iOS/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- "LIBRARY_SEARCH_PATHS[arch=arm64-sim]" = "$(inherited) $(PROJECT_DIR)/Externals/arm64-sim/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
- "LIBRARY_SEARCH_PATHS[arch=arm64]" = "$(inherited) $(PROJECT_DIR)/Externals/arm64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
- "LIBRARY_SEARCH_PATHS[arch=x86_64]" = "$(inherited) $(PROJECT_DIR)/Externals/x86_64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
- PRODUCT_BUNDLE_IDENTIFIER = citadel.citadel_workspace;
- PRODUCT_NAME = citadel_workspace;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALID_ARCHS = "arm64 arm64-sim";
- };
- name = debug;
- };
- CBD6F757374D8CCA8AB70163 /* release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
- ARCHS = (
- arm64,
- "arm64-sim",
- );
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CODE_SIGN_ENTITLEMENTS = citadel_workspace_iOS/citadel_workspace_iOS.entitlements;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- DEVELOPMENT_TEAM = V6ST62AAUZ;
- ENABLE_BITCODE = NO;
- "EXCLUDED_ARCHS[sdk=iphoneos*]" = "arm64-sim x86_64";
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "\".\"",
- );
- INFOPLIST_FILE = citadel_workspace_iOS/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- "LIBRARY_SEARCH_PATHS[arch=arm64-sim]" = "$(inherited) $(PROJECT_DIR)/Externals/arm64-sim/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
- "LIBRARY_SEARCH_PATHS[arch=arm64]" = "$(inherited) $(PROJECT_DIR)/Externals/arm64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
- "LIBRARY_SEARCH_PATHS[arch=x86_64]" = "$(inherited) $(PROJECT_DIR)/Externals/x86_64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)";
- PRODUCT_BUNDLE_IDENTIFIER = citadel.citadel_workspace;
- PRODUCT_NAME = citadel_workspace;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALID_ARCHS = "arm64 arm64-sim";
- };
- name = release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- EC92A1EA520A8049486D58DF /* Build configuration list for PBXNativeTarget "citadel_workspace_iOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 509DE3A6299C39C00DD07EFB /* debug */,
- CBD6F757374D8CCA8AB70163 /* release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = debug;
- };
- FA1667D4B0C2066A19F01280 /* Build configuration list for PBXProject "citadel_workspace" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 3BBFD4A193FFFCC6EF8E989C /* debug */,
- 36D7E5FDFF1440FA44F9942E /* release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = debug;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 9AF3B994F36DA67D3D2B35F7 /* Project object */;
-}
diff --git a/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 919434a..0000000
--- a/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
diff --git a/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
deleted file mode 100644
index ac90d5a..0000000
--- a/src-tauri/gen/apple/citadel_workspace.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
- BuildSystemType
- Original
- DisableBuildSystemDeprecationDiagnostic
-
-
-
diff --git a/src-tauri/gen/apple/citadel_workspace.xcodeproj/xcshareddata/xcschemes/citadel_workspace_iOS.xcscheme b/src-tauri/gen/apple/citadel_workspace.xcodeproj/xcshareddata/xcschemes/citadel_workspace_iOS.xcscheme
deleted file mode 100644
index 37aef34..0000000
--- a/src-tauri/gen/apple/citadel_workspace.xcodeproj/xcshareddata/xcschemes/citadel_workspace_iOS.xcscheme
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src-tauri/gen/apple/citadel_workspace_iOS/Info.plist b/src-tauri/gen/apple/citadel_workspace_iOS/Info.plist
deleted file mode 100644
index 9cbeec6..0000000
--- a/src-tauri/gen/apple/citadel_workspace_iOS/Info.plist
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- $(DEVELOPMENT_LANGUAGE)
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- 0.0.0
- CFBundleVersion
- 0.0.0
- LSRequiresIPhoneOS
-
- UILaunchStoryboardName
- LaunchScreen
- UIRequiredDeviceCapabilities
-
- arm64
- metal
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
-
-
diff --git a/src-tauri/gen/apple/citadel_workspace_iOS/citadel_workspace_iOS.entitlements b/src-tauri/gen/apple/citadel_workspace_iOS/citadel_workspace_iOS.entitlements
deleted file mode 100644
index 0c67376..0000000
--- a/src-tauri/gen/apple/citadel_workspace_iOS/citadel_workspace_iOS.entitlements
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/src-tauri/gen/apple/project.yml b/src-tauri/gen/apple/project.yml
deleted file mode 100644
index 74c47f5..0000000
--- a/src-tauri/gen/apple/project.yml
+++ /dev/null
@@ -1,90 +0,0 @@
-name: citadel_workspace
-options:
- bundleIdPrefix: citadel
- deploymentTarget:
- iOS: 13.0
-fileGroups: [../../src]
-configs:
- debug: debug
- release: release
-settingGroups:
- app:
- base:
- PRODUCT_NAME: citadel_workspace
- PRODUCT_BUNDLE_IDENTIFIER: citadel.citadel_workspace
- DEVELOPMENT_TEAM: V6ST62AAUZ
-targetTemplates:
- app:
- type: application
- sources:
- - path: Sources
- scheme:
- environmentVariables:
- RUST_BACKTRACE: full
- RUST_LOG: info
- settings:
- groups: [app]
-targets:
- citadel_workspace_iOS:
- type: application
- platform: iOS
- sources:
- - path: Sources
- - path: Assets.xcassets
- - path: Externals
- - path: citadel_workspace_iOS
- - path: assets
- buildPhase: resources
- type: folder
- info:
- path: citadel_workspace_iOS/Info.plist
- properties:
- LSRequiresIPhoneOS: true
- UILaunchStoryboardName: LaunchScreen
- UIRequiredDeviceCapabilities: [arm64, metal]
- UISupportedInterfaceOrientations:
- - UIInterfaceOrientationPortrait
- - UIInterfaceOrientationLandscapeLeft
- - UIInterfaceOrientationLandscapeRight
- UISupportedInterfaceOrientations~ipad:
- - UIInterfaceOrientationPortrait
- - UIInterfaceOrientationPortraitUpsideDown
- - UIInterfaceOrientationLandscapeLeft
- - UIInterfaceOrientationLandscapeRight
- CFBundleShortVersionString: 0.0.0
- CFBundleVersion: 0.0.0
- entitlements:
- path: citadel_workspace_iOS/citadel_workspace_iOS.entitlements
- scheme:
- environmentVariables:
- RUST_BACKTRACE: full
- RUST_LOG: info
- settings:
- base:
- ENABLE_BITCODE: false
- ARCHS: [arm64, arm64-sim]
- VALID_ARCHS: arm64 arm64-sim
- LIBRARY_SEARCH_PATHS[arch=x86_64]: $(inherited) $(PROJECT_DIR)/Externals/x86_64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)
- LIBRARY_SEARCH_PATHS[arch=arm64]: $(inherited) $(PROJECT_DIR)/Externals/arm64/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)
- LIBRARY_SEARCH_PATHS[arch=arm64-sim]: $(inherited) $(PROJECT_DIR)/Externals/arm64-sim/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES: true
- EXCLUDED_ARCHS[sdk=iphonesimulator*]: arm64
- EXCLUDED_ARCHS[sdk=iphoneos*]: arm64-sim x86_64
- groups: [app]
- dependencies:
- - framework: libcitadel_workspace_ui_lib.a
- embed: false
- - sdk: CoreGraphics.framework
- - sdk: Metal.framework
- - sdk: MetalKit.framework
- - sdk: QuartzCore.framework
- - sdk: Security.framework
- - sdk: UIKit.framework
- - sdk: WebKit.framework
- preBuildScripts:
- - script: ../../../../.cargo/bin/cargo-tauri tauri ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths "${FRAMEWORK_SEARCH_PATHS:?}" --header-search-paths "${HEADER_SEARCH_PATHS:?}" --gcc-preprocessor-definitions "${GCC_PREPROCESSOR_DEFINITIONS:-}" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?}
- name: Build Rust Code
- basedOnDependencyAnalysis: false
- outputFiles:
- - $(SRCROOT)/target/aarch64-apple-ios/${CONFIGURATION}/deps/libcitadel_workspace_ui_lib.a
- - $(SRCROOT)/target/x86_64-apple-ios/${CONFIGURATION}/deps/libcitadel_workspace_ui_lib.a
\ No newline at end of file