From 0a5061d7870184f315929f3295d6395203f1d2b4 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Mon, 5 Jun 2023 21:39:55 +0100 Subject: [PATCH] Created UI repository for subnet calculator --- .vscode/launch.json | 16 ++++++++-------- Cargo.toml | 2 +- LICENSE | 2 +- README.md | 4 ++-- src/main.rs | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index de33542..3a71e5f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,15 +7,15 @@ { "type": "lldb", "request": "launch", - "name": "Debug executable 'egui-template'", + "name": "Debug executable 'subnet_calculator_ui'", "cargo": { "args": [ "build", - "--bin=egui-template", - "--package=egui-template" + "--bin=subnet_calculator_ui", + "--package=subnet_calculator_ui" ], "filter": { - "name": "egui-template", + "name": "subnet_calculator_ui", "kind": "bin" } }, @@ -25,16 +25,16 @@ { "type": "lldb", "request": "launch", - "name": "Debug unit tests in executable 'egui-template'", + "name": "Debug unit tests in executable 'subnet_calculator_ui'", "cargo": { "args": [ "test", "--no-run", - "--bin=egui-template", - "--package=egui-template" + "--bin=subnet_calculator_ui", + "--package=subnet_calculator_ui" ], "filter": { - "name": "egui-template", + "name": "subnet_calculator_ui", "kind": "bin" } }, diff --git a/Cargo.toml b/Cargo.toml index 5412671..9ca6943 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "egui-template" +name = "subnet_calculator_ui" version = "0.1.0" edition = "2021" diff --git a/LICENSE b/LICENSE index 2071b23..e056fb4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) +Copyright (c) <2023> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index 5356532..f8252fe 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# egui-template +# Subnet Calculator UI -Template repo for an egui application in rust \ No newline at end of file +Front end UI written for my Subnet Calculator in rust's EGUI framework (modelled off of ImGUI) diff --git a/src/main.rs b/src/main.rs index 2487267..a2c1191 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,7 +16,7 @@ fn main() -> Result<(), eframe::Error> { //Start rendering and run the application eframe::run_native( - "egui-template", + "subnet_calculator_ui", options, Box::new(|_cc| Box::new(App::default())), )