mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-22 22:20:02 +00:00
feat: Init common crate
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -3,5 +3,5 @@
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "GrepTimeDB"
|
||||
name = "common"
|
||||
version = "0.1.0"
|
||||
|
||||
12
Cargo.toml
12
Cargo.toml
@@ -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
8
src/common/Cargo.toml
Normal 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
1
src/common/src/lib.rs
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Reference in New Issue
Block a user