32d60146e5
* feat: prepare for crates.io publishing Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix: exclude typos check Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix: add header for each file Signed-off-by: jeremyhi <fengjiachun@gmail.com> --------- Signed-off-by: jeremyhi <fengjiachun@gmail.com>
32 lines
708 B
TOML
32 lines
708 B
TOML
[package]
|
|
name = "greptime-proto"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Rust protobuf bindings for GreptimeDB APIs."
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/GreptimeTeam/greptime-proto"
|
|
documentation = "https://docs.rs/greptime-proto"
|
|
keywords = ["greptime", "greptimedb", "grpc", "protobuf", "proto"]
|
|
categories = ["api-bindings"]
|
|
include = [
|
|
"/Cargo.toml",
|
|
"/LICENSE",
|
|
"/README.md",
|
|
"/proto/**",
|
|
"/src/**",
|
|
]
|
|
|
|
[workspace]
|
|
members = ["xtask"]
|
|
|
|
[dependencies]
|
|
prost = "0.14"
|
|
prost-types = "0.14"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
strum = "0.25"
|
|
strum_macros = "0.25"
|
|
tonic = "0.14"
|
|
tonic-prost = "0.14"
|