Skip to content

Commit

Permalink
Merge pull request #63 from mobilecoinfoundation/feature/dependency_v…
Browse files Browse the repository at this point in the history
…ersions

Add missing version strings for dependent crates
  • Loading branch information
James Cape authored Aug 17, 2022
2 parents c79c8c8 + 640f2a4 commit 2827900
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion capable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ This crate exposes an idiomatic rust interface to the SGX SDK's `libsgx_capable`
'''

[dependencies]
mc-sgx-capable-ffi = { path = "ffi" }
mc-sgx-capable-sys = { path = "sys", version = "=0.1.0" }
2 changes: 1 addition & 1 deletion dcap_quoteverify/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ mc-sgx-dcap-sys-types = { path = "../../dcap/sys/types", version = "=0.1.0" }
[build-dependencies]
bindgen = "0.60.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../core/build" }
mc-sgx-core-build = { path = "../../core/build", version = "=0.1.0" }
2 changes: 1 addition & 1 deletion dcap_quoteverify/sys/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ mc-sgx-dcap-sys-types = { path = "../../../dcap/sys/types", version = "=0.1.0" }
[build-dependencies]
bindgen = "0.60.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../../core/build" }
mc-sgx-core-build = { path = "../../../core/build", version = "=0.1.0" }
2 changes: 1 addition & 1 deletion tcrypto/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ sha2 = "0.10.2"
[build-dependencies]
bindgen = "0.60.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../core/build" }
mc-sgx-core-build = { path = "../../core/build", version = "=0.1.0" }
2 changes: 1 addition & 1 deletion test_enclave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ bindgen = "0.60.1"
rsa = "0.6.1"
rand = "0.8.5"

mc-sgx-core-build = { path = "../core/build" }
mc-sgx-core-build = { path = "../core/build", version = "=0.1.0" }
6 changes: 3 additions & 3 deletions tstdc/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ rust-version = "1.62.1"
test = false

[dependencies]
mc-sgx-tstdc-sys-types = { path = "types" }
mc-sgx-core-sys-types = { path = "../../core/sys/types" }
mc-sgx-tstdc-sys-types = { path = "types", version = "0.1.0" }
mc-sgx-core-sys-types = { path = "../../core/sys/types", version = "0.1.0" }

[build-dependencies]
bindgen = "0.60.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../core/build" }
mc-sgx-core-build = { path = "../../core/build", version = "0.1.0" }
2 changes: 1 addition & 1 deletion urts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ sim = ["mc-sgx-urts-sys/sim", "test_enclave/sim"]
default = []

[dev-dependencies]
test_enclave = { path = "../test_enclave" }
test_enclave = { path = "../test_enclave", version = "=0.1.0" }
2 changes: 1 addition & 1 deletion urts/sys/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ mc-sgx-core-sys-types = { path = "../../../core/sys/types", version = "=0.1.0" }
bindgen = "0.60.1"
cargo-emit = "0.2.1"

mc-sgx-core-build = { path = "../../../core/build" }
mc-sgx-core-build = { path = "../../../core/build", version = "=0.1.0" }

0 comments on commit 2827900

Please sign in to comment.