feat: Init common crate

This commit is contained in:
evenyag
2022-04-19 18:41:20 +08:00
parent 1da6b2e1e8
commit a6c6023737
5 changed files with 14 additions and 12 deletions

2
Cargo.lock generated
View File

@@ -3,5 +3,5 @@
version = 3
[[package]]
name = "GrepTimeDB"
name = "common"
version = "0.1.0"

View File

@@ -1,8 +1,4 @@
[package]
name = "greptime"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[workspace]
members = [
"src/common"
]

8
src/common/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "common"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
src/common/src/lib.rs Normal file
View File

@@ -0,0 +1 @@

View File

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