mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-28 02:40:38 +00:00
* feat: add license checker workflow Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix existing header Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * specify license for internal sub-crate Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix rustfmt Signed-off-by: Ruihang Xia <waynestxia@gmail.com> Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
19 lines
486 B
TOML
19 lines
486 B
TOML
[package]
|
|
name = "api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
common-base = { path = "../common/base" }
|
|
common-time = { path = "../common/time" }
|
|
common-error = { path = "../common/error" }
|
|
datatypes = { path = "../datatypes" }
|
|
prost = "0.11"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
tonic = "0.8"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.8"
|