Skip to content

Commit

Permalink
Exclude oak_abi and oak_utils from the workspace (#1039)
Browse files Browse the repository at this point in the history
* Moves `oak_utils` to the root folder
* Excludes `oak_abi` and `oak_utils` from the workspace
  • Loading branch information
rbehjati authored May 28, 2020
1 parent 8188216 commit 0b133c0
Show file tree
Hide file tree
Showing 6 changed files with 732 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ members = [
"runner",
"sdk/rust/oak",
"sdk/rust/oak_tests",
"sdk/rust/oak_utils",
]
exclude = ["oak_abi", "oak_utils"]

# Patch dependencies on oak crates so that they refer to the versions within this same repository.
#
Expand All @@ -40,7 +40,7 @@ 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" }
oak_utils = { path = "sdk/rust/oak_utils" }
oak_utils = { path = "oak_utils" }
runner = { path = "runner" }
# Examples.
abitest_common = { path = "examples/abitest/abitest_common" }
Expand Down
370 changes: 370 additions & 0 deletions oak_abi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion oak_abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ prost = "*"
prost-types = "*"

[build-dependencies]
oak_utils = "*"
oak_utils = { path = "../oak_utils" }
prost-build = "*"
Loading

0 comments on commit 0b133c0

Please sign in to comment.