swift-bridge 0.1.59

Generate FFI bindings for safe interop between Rust and Swift.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  SwiftRustIntegrationTestRunnerApp.swift
//  SwiftRustIntegrationTestRunner
//
//  Created by Frankie Nwafili on 11/14/21.
//

import SwiftUI

@main
struct SwiftRustIntegrationTestRunnerApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}