Browse Source

Add rust base structure

new_protocol
ThePerkinrex 5 years ago
parent
commit
84e414b07f
No known key found for this signature in database GPG Key ID: 1F45A7C4BFB41607
  1. 2
      server/.gitignore
  2. 9
      server/Cargo.toml
  3. 3
      server/src/main.rs

2
server/.gitignore

@ -0,0 +1,2 @@
/target
Cargo.lock

9
server/Cargo.toml

@ -0,0 +1,9 @@
[package]
name = "server"
version = "0.1.0"
authors = ["ThePerkinrex <theperkinrex@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
server/src/main.rs

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