Skip to content

Commit

Permalink
fix: add directly missing google proto
Browse files Browse the repository at this point in the history
This reverts commit 1bd7049.

# Conflicts:
#	Cargo.toml
  • Loading branch information
rfrerebe committed Oct 26, 2023
1 parent 1bd7049 commit e140869
Show file tree
Hide file tree
Showing 6 changed files with 561 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ description = "Ganymede.cloud rust client."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tonic = { version = "0.7", features = ["tls", "prost"] }
prost = "0.10"
prost-types = "0.10"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "fs"] }
google-api-proto = { version = "1", features = ["google-type","google-api"] }
tonic = { version = "0.10.2", features = ["tls", "prost"] }
prost = "0.12"
prost-types = "0.12"
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread", "fs"] }

[build-dependencies]
walkdir = "2"
tonic-build = "0.7"
tonic-build = "0.10.2"
31 changes: 31 additions & 0 deletions src/google/api/annotation.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// Copyright 2015 Google LLC
//
// 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.

syntax = "proto3";

package google.api;

import "google/api/http.proto";
import "google/protobuf/descriptor.proto";

option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations";
option java_multiple_files = true;
option java_outer_classname = "AnnotationsProto";
option java_package = "com.google.api";
option objc_class_prefix = "GAPI";

extend google.protobuf.MethodOptions {
// See `HttpRule`.
HttpRule http = 72295728;
}
Loading

0 comments on commit e140869

Please sign in to comment.