├── .gitignore ├── Cargo.toml ├── README.md ├── android-sdk ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── restsend │ │ │ └── restsend_sdk │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── uniffi │ │ ├── jniLibs │ │ │ └── arm64-v8a │ │ │ │ └── librestsend_sdk.so │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── restsend │ │ └── restsend_sdk │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── crates ├── restsend-dart │ ├── Cargo.toml │ └── src │ │ ├── api.rs │ │ └── lib.rs ├── restsend-macros │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── restsend-wasm │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── assets │ │ ├── alpine-3.14.8.js │ │ ├── moment.min.js │ │ └── tailwind-3.4.16.js │ ├── filter.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── account.rs │ │ ├── callback.rs │ │ ├── conversations.rs │ │ ├── js_util.rs │ │ ├── lib.rs │ │ ├── logger.rs │ │ ├── message.rs │ │ ├── topics.rs │ │ └── users.rs │ ├── test │ │ ├── .gitignore │ │ ├── auth.spec.js │ │ ├── common.js │ │ ├── connection.spec.js │ │ ├── conversations.spec.js │ │ ├── indexeddb.spec.js │ │ ├── message.spec.js │ │ └── users.spec.js │ └── vite.config.js └── restsend │ ├── Cargo.toml │ ├── bindgen.rs │ ├── src │ ├── account.rs │ ├── callback.rs │ ├── client │ │ ├── connection.rs │ │ ├── conversation.rs │ │ ├── message.rs │ │ ├── mod.rs │ │ ├── store │ │ │ ├── attachments.rs │ │ │ ├── conversations.rs │ │ │ ├── mod.rs │ │ │ ├── requests.rs │ │ │ └── users.rs │ │ ├── tests │ │ │ ├── mod.rs │ │ │ ├── test_client.rs │ │ │ ├── test_conversation.rs │ │ │ ├── test_logs.rs │ │ │ ├── test_upload.rs │ │ │ └── test_users.rs │ │ └── topic.rs │ ├── error │ │ ├── mod.rs │ │ ├── uniffi_wrap.rs │ │ └── wasm_wrap.rs │ ├── lib.rs │ ├── media │ │ ├── mod.rs │ │ ├── reqwest_impl.rs │ │ └── web_sys_impl.rs │ ├── models │ │ ├── chat_log.rs │ │ ├── conversation.rs │ │ ├── mod.rs │ │ ├── topic.rs │ │ ├── topic_member.rs │ │ └── user.rs │ ├── request.rs │ ├── services │ │ ├── auth.rs │ │ ├── conversation.rs │ │ ├── media.rs │ │ ├── mod.rs │ │ ├── response.rs │ │ ├── tests │ │ │ ├── mod.rs │ │ │ └── test_media.rs │ │ ├── topic.rs │ │ ├── topic_admin.rs │ │ └── user.rs │ ├── storage │ │ ├── indexeddb.rs │ │ ├── memory.rs │ │ ├── mod.rs │ │ └── sqlite.rs │ ├── utils.rs │ └── websocket │ │ ├── mod.rs │ │ ├── tests.rs │ │ ├── tokio_impl.rs │ │ └── web_sys_impl.rs │ └── uniffi.toml ├── dart └── restsend_dart │ ├── analysis_options.yaml │ ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── restsend_flutter_demo │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle.kts │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── main.dart │ │ └── src │ │ │ ├── chat_screen.dart │ │ │ ├── conversation_list_screen.dart │ │ │ ├── demo_controller.dart │ │ │ └── login_screen.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ └── runner │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cc │ │ │ ├── my_application.cc │ │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── pubspec.yaml │ ├── test │ │ └── widget_test.dart │ ├── web │ │ ├── favicon.png │ │ ├── icons │ │ │ ├── Icon-192.png │ │ │ ├── Icon-512.png │ │ │ ├── Icon-maskable-192.png │ │ │ └── Icon-maskable-512.png │ │ ├── index.html │ │ └── manifest.json │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h │ ├── lib │ ├── restsend_dart.dart │ └── src │ │ ├── restsend_auth.dart │ │ ├── restsend_client.dart │ │ ├── restsend_models.dart │ │ └── runtime.dart │ └── pubspec.yaml ├── js ├── README.md ├── package.json ├── restsend_wasm.d.ts ├── restsend_wasm.js ├── restsend_wasm_bg.wasm └── restsend_wasm_bg.wasm.d.ts ├── kotlin └── uniffi │ └── restsend_sdk │ └── restsend_sdk.kt └── swift ├── RestsendSdk.podspec ├── module.h ├── module.modulemap ├── restsend.swift ├── restsend_sdk.swift ├── restsend_sdkFFI.h └── restsend_sdkFFI.modulemap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/README.md -------------------------------------------------------------------------------- /android-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/.gitignore -------------------------------------------------------------------------------- /android-sdk/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android-sdk/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/build.gradle -------------------------------------------------------------------------------- /android-sdk/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/proguard-rules.pro -------------------------------------------------------------------------------- /android-sdk/app/src/androidTest/java/com/restsend/restsend_sdk/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/androidTest/java/com/restsend/restsend_sdk/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /android-sdk/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/java/uniffi: -------------------------------------------------------------------------------- 1 | ../../../../../kotlin/uniffi -------------------------------------------------------------------------------- /android-sdk/app/src/main/jniLibs/arm64-v8a/librestsend_sdk.so: -------------------------------------------------------------------------------- 1 | ../../../../../../jniLibs/arm64-v8a/librestsend_sdk.so -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /android-sdk/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /android-sdk/app/src/test/java/com/restsend/restsend_sdk/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/app/src/test/java/com/restsend/restsend_sdk/ExampleUnitTest.kt -------------------------------------------------------------------------------- /android-sdk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/build.gradle -------------------------------------------------------------------------------- /android-sdk/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/gradle.properties -------------------------------------------------------------------------------- /android-sdk/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/gradle/libs.versions.toml -------------------------------------------------------------------------------- /android-sdk/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-sdk/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android-sdk/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/gradlew -------------------------------------------------------------------------------- /android-sdk/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/gradlew.bat -------------------------------------------------------------------------------- /android-sdk/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/android-sdk/settings.gradle -------------------------------------------------------------------------------- /crates/restsend-dart/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-dart/Cargo.toml -------------------------------------------------------------------------------- /crates/restsend-dart/src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-dart/src/api.rs -------------------------------------------------------------------------------- /crates/restsend-dart/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-dart/src/lib.rs -------------------------------------------------------------------------------- /crates/restsend-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-macros/Cargo.toml -------------------------------------------------------------------------------- /crates/restsend-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-macros/src/lib.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | package-lock.json 4 | pkg -------------------------------------------------------------------------------- /crates/restsend-wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/Cargo.toml -------------------------------------------------------------------------------- /crates/restsend-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/README.md -------------------------------------------------------------------------------- /crates/restsend-wasm/assets/alpine-3.14.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/assets/alpine-3.14.8.js -------------------------------------------------------------------------------- /crates/restsend-wasm/assets/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/assets/moment.min.js -------------------------------------------------------------------------------- /crates/restsend-wasm/assets/tailwind-3.4.16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/assets/tailwind-3.4.16.js -------------------------------------------------------------------------------- /crates/restsend-wasm/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/filter.js -------------------------------------------------------------------------------- /crates/restsend-wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/index.html -------------------------------------------------------------------------------- /crates/restsend-wasm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/package.json -------------------------------------------------------------------------------- /crates/restsend-wasm/src/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/account.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/src/callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/callback.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/src/conversations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/conversations.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/src/js_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/js_util.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/lib.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/logger.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/message.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/src/topics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/topics.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/src/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/src/users.rs -------------------------------------------------------------------------------- /crates/restsend-wasm/test/.gitignore: -------------------------------------------------------------------------------- 1 | __screenshots__/ -------------------------------------------------------------------------------- /crates/restsend-wasm/test/auth.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/test/auth.spec.js -------------------------------------------------------------------------------- /crates/restsend-wasm/test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/test/common.js -------------------------------------------------------------------------------- /crates/restsend-wasm/test/connection.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/test/connection.spec.js -------------------------------------------------------------------------------- /crates/restsend-wasm/test/conversations.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/test/conversations.spec.js -------------------------------------------------------------------------------- /crates/restsend-wasm/test/indexeddb.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/test/indexeddb.spec.js -------------------------------------------------------------------------------- /crates/restsend-wasm/test/message.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/test/message.spec.js -------------------------------------------------------------------------------- /crates/restsend-wasm/test/users.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/test/users.spec.js -------------------------------------------------------------------------------- /crates/restsend-wasm/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend-wasm/vite.config.js -------------------------------------------------------------------------------- /crates/restsend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/Cargo.toml -------------------------------------------------------------------------------- /crates/restsend/bindgen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/bindgen.rs -------------------------------------------------------------------------------- /crates/restsend/src/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/account.rs -------------------------------------------------------------------------------- /crates/restsend/src/callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/callback.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/connection.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/conversation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/conversation.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/message.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/store/attachments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/store/attachments.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/store/conversations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/store/conversations.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/store/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/store/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/store/requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/store/requests.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/store/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/store/users.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/tests/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/tests/test_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/tests/test_client.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/tests/test_conversation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/tests/test_conversation.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/tests/test_logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/tests/test_logs.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/tests/test_upload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/tests/test_upload.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/tests/test_users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/tests/test_users.rs -------------------------------------------------------------------------------- /crates/restsend/src/client/topic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/client/topic.rs -------------------------------------------------------------------------------- /crates/restsend/src/error/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/error/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/error/uniffi_wrap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/error/uniffi_wrap.rs -------------------------------------------------------------------------------- /crates/restsend/src/error/wasm_wrap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/error/wasm_wrap.rs -------------------------------------------------------------------------------- /crates/restsend/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/lib.rs -------------------------------------------------------------------------------- /crates/restsend/src/media/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/media/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/media/reqwest_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/media/reqwest_impl.rs -------------------------------------------------------------------------------- /crates/restsend/src/media/web_sys_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/media/web_sys_impl.rs -------------------------------------------------------------------------------- /crates/restsend/src/models/chat_log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/models/chat_log.rs -------------------------------------------------------------------------------- /crates/restsend/src/models/conversation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/models/conversation.rs -------------------------------------------------------------------------------- /crates/restsend/src/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/models/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/models/topic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/models/topic.rs -------------------------------------------------------------------------------- /crates/restsend/src/models/topic_member.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/models/topic_member.rs -------------------------------------------------------------------------------- /crates/restsend/src/models/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/models/user.rs -------------------------------------------------------------------------------- /crates/restsend/src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/request.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/auth.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/conversation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/conversation.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/media.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/media.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/response.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/tests/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/tests/test_media.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/tests/test_media.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/topic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/topic.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/topic_admin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/topic_admin.rs -------------------------------------------------------------------------------- /crates/restsend/src/services/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/services/user.rs -------------------------------------------------------------------------------- /crates/restsend/src/storage/indexeddb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/storage/indexeddb.rs -------------------------------------------------------------------------------- /crates/restsend/src/storage/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/storage/memory.rs -------------------------------------------------------------------------------- /crates/restsend/src/storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/storage/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/storage/sqlite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/storage/sqlite.rs -------------------------------------------------------------------------------- /crates/restsend/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/utils.rs -------------------------------------------------------------------------------- /crates/restsend/src/websocket/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/websocket/mod.rs -------------------------------------------------------------------------------- /crates/restsend/src/websocket/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/websocket/tests.rs -------------------------------------------------------------------------------- /crates/restsend/src/websocket/tokio_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/websocket/tokio_impl.rs -------------------------------------------------------------------------------- /crates/restsend/src/websocket/web_sys_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/src/websocket/web_sys_impl.rs -------------------------------------------------------------------------------- /crates/restsend/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/crates/restsend/uniffi.toml -------------------------------------------------------------------------------- /dart/restsend_dart/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/analysis_options.yaml -------------------------------------------------------------------------------- /dart/restsend_dart/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/.gitignore -------------------------------------------------------------------------------- /dart/restsend_dart/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/.metadata -------------------------------------------------------------------------------- /dart/restsend_dart/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/README.md -------------------------------------------------------------------------------- /dart/restsend_dart/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/analysis_options.yaml -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/.gitignore -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/build.gradle.kts -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/kotlin/com/example/restsend_flutter_demo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/kotlin/com/example/restsend_flutter_demo/MainActivity.kt -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/build.gradle.kts -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/gradle.properties -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /dart/restsend_dart/example/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/android/settings.gradle.kts -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/.gitignore -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /dart/restsend_dart/example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /dart/restsend_dart/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/lib/main.dart -------------------------------------------------------------------------------- /dart/restsend_dart/example/lib/src/chat_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/lib/src/chat_screen.dart -------------------------------------------------------------------------------- /dart/restsend_dart/example/lib/src/conversation_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/lib/src/conversation_list_screen.dart -------------------------------------------------------------------------------- /dart/restsend_dart/example/lib/src/demo_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/lib/src/demo_controller.dart -------------------------------------------------------------------------------- /dart/restsend_dart/example/lib/src/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/lib/src/login_screen.dart -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/runner/CMakeLists.txt -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/runner/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/runner/main.cc -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/runner/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/runner/my_application.cc -------------------------------------------------------------------------------- /dart/restsend_dart/example/linux/runner/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/linux/runner/my_application.h -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/.gitignore -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /dart/restsend_dart/example/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /dart/restsend_dart/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/pubspec.yaml -------------------------------------------------------------------------------- /dart/restsend_dart/example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/test/widget_test.dart -------------------------------------------------------------------------------- /dart/restsend_dart/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/web/favicon.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /dart/restsend_dart/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/web/index.html -------------------------------------------------------------------------------- /dart/restsend_dart/example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/web/manifest.json -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/.gitignore -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/resource.h -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/utils.h -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /dart/restsend_dart/example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /dart/restsend_dart/lib/restsend_dart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/lib/restsend_dart.dart -------------------------------------------------------------------------------- /dart/restsend_dart/lib/src/restsend_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/lib/src/restsend_auth.dart -------------------------------------------------------------------------------- /dart/restsend_dart/lib/src/restsend_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/lib/src/restsend_client.dart -------------------------------------------------------------------------------- /dart/restsend_dart/lib/src/restsend_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/lib/src/restsend_models.dart -------------------------------------------------------------------------------- /dart/restsend_dart/lib/src/runtime.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/lib/src/runtime.dart -------------------------------------------------------------------------------- /dart/restsend_dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/dart/restsend_dart/pubspec.yaml -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/js/README.md -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/js/package.json -------------------------------------------------------------------------------- /js/restsend_wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/js/restsend_wasm.d.ts -------------------------------------------------------------------------------- /js/restsend_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/js/restsend_wasm.js -------------------------------------------------------------------------------- /js/restsend_wasm_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/js/restsend_wasm_bg.wasm -------------------------------------------------------------------------------- /js/restsend_wasm_bg.wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/js/restsend_wasm_bg.wasm.d.ts -------------------------------------------------------------------------------- /kotlin/uniffi/restsend_sdk/restsend_sdk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/kotlin/uniffi/restsend_sdk/restsend_sdk.kt -------------------------------------------------------------------------------- /swift/RestsendSdk.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/swift/RestsendSdk.podspec -------------------------------------------------------------------------------- /swift/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/swift/module.h -------------------------------------------------------------------------------- /swift/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/swift/module.modulemap -------------------------------------------------------------------------------- /swift/restsend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/swift/restsend.swift -------------------------------------------------------------------------------- /swift/restsend_sdk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/swift/restsend_sdk.swift -------------------------------------------------------------------------------- /swift/restsend_sdkFFI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/swift/restsend_sdkFFI.h -------------------------------------------------------------------------------- /swift/restsend_sdkFFI.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsend/restsend-rs/HEAD/swift/restsend_sdkFFI.modulemap --------------------------------------------------------------------------------