Initial commit (aaaaa)

This commit is contained in:
Ella Evelyn Paws 2020-09-15 22:54:48 +02:00
commit 106161db56
3 changed files with 18 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

10
Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "chatserv"
version = "0.0.1"
authors = ["ella"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "0.2", features = ["full"] }

7
src/main.rs Normal file
View File

@ -0,0 +1,7 @@
#[tokio::main]
pub async
fn main
() -> Result<()> {
println!("aa");
Ok(())
}