Skip to content

Commit 9600746

Browse files
committed
Disable build.rs
1 parent e8fc480 commit 9600746

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dgraph-rs"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
authors = ["Insanitybit <[email protected]>"]
55
edition = "2018"
66

build.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
extern crate protoc_rust_grpc;
22

33
fn main() {
4-
protoc_rust_grpc::run(protoc_rust_grpc::Args {
5-
out_dir: "src/protos/",
6-
input: &["proto/api.proto"],
7-
includes: &["proto"],
8-
rust_protobuf: true, // also generate protobuf messages, not just services
9-
..Default::default()
10-
}).expect("protoc");
4+
// protoc_rust_grpc::run(protoc_rust_grpc::Args {
5+
// out_dir: "src/protos/",
6+
// input: &["proto/api.proto"],
7+
// includes: &["proto"],
8+
// rust_protobuf: true, // also generate protobuf messages, not just services
9+
// ..Default::default()
10+
// }).expect("protoc");
1111
}

0 commit comments

Comments
 (0)