mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-09 14:52:58 +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>
37 lines
1.3 KiB
Rust
37 lines
1.3 KiB
Rust
// Copyright 2022 Greptime Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use std::path::PathBuf;
|
|
|
|
fn main() {
|
|
let default_out_dir = PathBuf::from(std::env::var("OUT_DIR").unwrap());
|
|
tonic_build::configure()
|
|
.file_descriptor_set_path(default_out_dir.join("greptime_fd.bin"))
|
|
.compile(
|
|
&[
|
|
"greptime/v1/insert.proto",
|
|
"greptime/v1/select.proto",
|
|
"greptime/v1/physical_plan.proto",
|
|
"greptime/v1/greptime.proto",
|
|
"greptime/v1/meta/common.proto",
|
|
"greptime/v1/meta/heartbeat.proto",
|
|
"greptime/v1/meta/route.proto",
|
|
"greptime/v1/meta/store.proto",
|
|
"prometheus/remote/remote.proto",
|
|
],
|
|
&["."],
|
|
)
|
|
.expect("compile proto");
|
|
}
|