From 4ca5387bb84460bf393347a32fa259390e3e9fe6 Mon Sep 17 00:00:00 2001 From: dennis zhuang Date: Mon, 11 Apr 2022 11:46:49 +0800 Subject: [PATCH] chore: Initial commit --- .gitignore | 10 ++++++++++ Cargo.toml | 8 ++++++++ README.md | 2 ++ src/main.rs | 3 +++ 4 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 README.md create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..088ba6ba7d --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Generated by Cargo +# will have compiled files and executables +/target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000000..926483c43e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "GrepTimeDB" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000000..a20635aff0 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# GrepTimeDB +GrepTimeDB: the next-generation hybrid timeseries/analytics processing database in the cloud. diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000000..e7a11a969c --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}