commit 61ad9fb75c8f123cc58e7b2a0b6ddbfa6781b56b
parent 023134c31cb39d57d32fa2cf7f9e238b5a4c6403
Author: Charlie Stanton <charlie@shtanton.com>
Date: Wed, 5 Aug 2020 15:45:00 +0100
Creates gopher server project
Diffstat:
3 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/gopher-server/Cargo.lock b/gopher-server/Cargo.lock
@@ -0,0 +1,5 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+[[package]]
+name = "gopher-server"
+version = "0.1.0"
diff --git a/gopher-server/Cargo.toml b/gopher-server/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "gopher-server"
+version = "0.1.0"
+authors = ["Charlie Stanton <charlie@shtanton.com>"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/gopher-server/src/main.rs b/gopher-server/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}