commit 4ca5387bb84460bf393347a32fa259390e3e9fe6 Author: dennis zhuang Date: Mon Apr 11 11:46:49 2022 +0800 chore: Initial commit 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!"); +}