Browse Source

initial commit

master
Jonathan Strong 2 years ago
commit
bdb0f8b6a9
3 changed files with 13 additions and 0 deletions
  1. +3
    -0
      .gitignore
  2. +7
    -0
      Cargo.toml
  3. +3
    -0
      src/main.rs

+ 3
- 0
.gitignore View File

@@ -0,0 +1,3 @@
/target
*.swp
Cargo.lock

+ 7
- 0
Cargo.toml View File

@@ -0,0 +1,7 @@
[package]
name = "glomtastic"
version = "0.1.0"
edition = "2018"

[dependencies]
glommio = "0.4"

+ 3
- 0
src/main.rs View File

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

Loading…
Cancel
Save