From 106161db567209572a298ee9156af171fd21b90e Mon Sep 17 00:00:00 2001 From: Ella Date: Tue, 15 Sep 2020 22:54:48 +0200 Subject: [PATCH] Initial commit (aaaaa) --- .gitignore | 1 + Cargo.toml | 10 ++++++++++ src/main.rs | 7 +++++++ 3 files changed, 18 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..cedc770 --- /dev/null +++ b/Cargo.toml @@ -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"] } diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..d5b6ee6 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,7 @@ +#[tokio::main] +pub async +fn main +() -> Result<()> { + println!("aa"); + Ok(()) +}