Skip to content

Commit a2bedca

Browse files
committed
rename to robotrs
1 parent 851688f commit a2bedca

5 files changed

Lines changed: 20 additions & 20 deletions

File tree

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "eframe_template"
2+
name = "robotrs"
33
version = "0.1.0"
4-
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
4+
authors = ["Joseph Peter McMahon <jmcmahon443@gmail.com>"]
55
edition = "2021"
66
include = ["LICENSE-APACHE", "LICENSE-MIT", "**/*.rs", "Cargo.toml"]
77
rust-version = "1.81"

assets/sw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ var cacheName = 'egui-template-pwa';
22
var filesToCache = [
33
'./',
44
'./index.html',
5-
'./eframe_template.js',
6-
'./eframe_template_bg.wasm',
5+
'./robotrs.js',
6+
'./robotrs_bg.wasm',
77
];
88

99
/* Start the service worker and cache all of the app's content */

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<head>
99
<!-- change this to your project name -->
10-
<title>eframe template</title>
10+
<title>robotrs</title>
1111

1212
<!-- config for our rust wasm binary. go to https://trunkrs.dev/assets/#rust for more customization -->
1313
<link data-trunk rel="rust" data-wasm-opt="2" />

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fn main() -> eframe::Result {
2020
eframe::run_native(
2121
"eframe template",
2222
native_options,
23-
Box::new(|cc| Ok(Box::new(eframe_template::TemplateApp::new(cc)))),
23+
Box::new(|cc| Ok(Box::new(robotrs::TemplateApp::new(cc)))),
2424
)
2525
}
2626

@@ -50,7 +50,7 @@ fn main() {
5050
.start(
5151
canvas,
5252
web_options,
53-
Box::new(|cc| Ok(Box::new(eframe_template::TemplateApp::new(cc)))),
53+
Box::new(|cc| Ok(Box::new(robotrs::TemplateApp::new(cc)))),
5454
)
5555
.await;
5656

0 commit comments

Comments
 (0)