├── LICENSE ├── hello-rust ├── hello-rust.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── emilsjolander.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── emilsjolander.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── hello-rust │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── hello-rustTests │ ├── Info.plist │ └── hello_rustTests.swift ├── hello-rustUITests │ ├── Info.plist │ └── hello_rustUITests.swift ├── include │ └── rust.h └── libs │ └── librust.a ├── install.sh └── rust ├── .gitignore ├── Cargo.toml ├── rust.h └── src └── lib.rs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/LICENSE -------------------------------------------------------------------------------- /hello-rust/hello-rust.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /hello-rust/hello-rust.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /hello-rust/hello-rust.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /hello-rust/hello-rust.xcodeproj/project.xcworkspace/xcuserdata/emilsjolander.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust.xcodeproj/project.xcworkspace/xcuserdata/emilsjolander.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /hello-rust/hello-rust.xcodeproj/xcuserdata/emilsjolander.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust.xcodeproj/xcuserdata/emilsjolander.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /hello-rust/hello-rust/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust/AppDelegate.swift -------------------------------------------------------------------------------- /hello-rust/hello-rust/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /hello-rust/hello-rust/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /hello-rust/hello-rust/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /hello-rust/hello-rust/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /hello-rust/hello-rust/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust/Info.plist -------------------------------------------------------------------------------- /hello-rust/hello-rust/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rust/ViewController.swift -------------------------------------------------------------------------------- /hello-rust/hello-rustTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rustTests/Info.plist -------------------------------------------------------------------------------- /hello-rust/hello-rustTests/hello_rustTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rustTests/hello_rustTests.swift -------------------------------------------------------------------------------- /hello-rust/hello-rustUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rustUITests/Info.plist -------------------------------------------------------------------------------- /hello-rust/hello-rustUITests/hello_rustUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/hello-rustUITests/hello_rustUITests.swift -------------------------------------------------------------------------------- /hello-rust/include/rust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/include/rust.h -------------------------------------------------------------------------------- /hello-rust/libs/librust.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/hello-rust/libs/librust.a -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/install.sh -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/rust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/rust/rust.h -------------------------------------------------------------------------------- /rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislyhq/rust-ios-example/HEAD/rust/src/lib.rs --------------------------------------------------------------------------------