Skip to content

Commit

Permalink
Make oak_abi a standalone crate (#1034)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbehjati authored May 27, 2020
1 parent 333681d commit d2bfcc3
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 11 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ members = [
"experimental/split_grpc/client",
"experimental/split_grpc/proxy",
"experimental/split_grpc/server",
"oak/server/rust/oak_abi",
"oak/server/rust/oak_glue",
"oak/server/rust/oak_loader",
"oak/server/rust/oak_runtime",
Expand All @@ -37,7 +36,7 @@ members = [
[patch.crates-io]
# Oak.
oak = { path = "sdk/rust/oak" }
oak_abi = { path = "oak/server/rust/oak_abi" }
oak_abi = { path = "oak_abi" }
oak_loader = { path = "oak/server/rust/oak_loader" }
oak_runtime = { path = "oak/server/rust/oak_runtime" }
oak_tests = { path = "sdk/rust/oak_tests" }
Expand Down
1 change: 0 additions & 1 deletion examples/aggregator/module/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ prost = "*"

[dev-dependencies]
assert_matches = "*"
oak_abi = "=0.1.0"
oak_runtime = "=0.1.0"
oak_tests = "=0.1.0"
maplit = "*"
Expand Down
File renamed without changes.
16 changes: 8 additions & 8 deletions oak/server/rust/oak_abi/build.rs → oak_abi/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
fn main() {
oak_utils::compile_protos(
&[
"../../../../oak/proto/application.proto",
"../../../../oak/proto/grpc_encap.proto",
"../../../../oak/proto/label.proto",
"../../../../oak/proto/log.proto",
"../../../../oak/proto/oak_abi.proto",
"../../../../third_party/google/rpc/code.proto",
"../../../../third_party/google/rpc/status.proto",
"../oak/proto/application.proto",
"../oak/proto/grpc_encap.proto",
"../oak/proto/label.proto",
"../oak/proto/log.proto",
"../oak/proto/oak_abi.proto",
"../third_party/google/rpc/code.proto",
"../third_party/google/rpc/status.proto",
],
&["../../../.."],
&[".."],
);
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d2bfcc3

Please sign in to comment.