Bläddra i källkod

Initialized a rust binary crate, updated LICENSE

Updated LICENSE and README.md, and initialized a rust bin crate.
Apollo 8 månader sedan
förälder
incheckning
23ed0d5f65
5 ändrade filer med 14 tillägg och 2 borttagningar
  1. 3 0
      .gitignore
  2. 6 0
      Cargo.toml
  3. 1 1
      LICENSE
  4. 1 1
      README.md
  5. 3 0
      src/main.rs

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+/target
+.vscode/
+

+ 6 - 0
Cargo.toml

@@ -0,0 +1,6 @@
+[package]
+name = "moonmud"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]

+ 1 - 1
LICENSE

@@ -1,5 +1,5 @@
 MIT License
-Copyright (c) <year> <copyright holders>
+Copyright (c) 2024 David Thielemann (Apollo)
 
 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:
 

+ 1 - 1
README.md

@@ -1,2 +1,2 @@
-# moonmud
+# MoonMUD
 

+ 3 - 0
src/main.rs

@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}