Skip to content

Commit

Permalink
(cargo-release) version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dolanbernard committed Jun 22, 2023
1 parent 22f3fca commit 5156c27
Show file tree
Hide file tree
Showing 68 changed files with 196 additions and 193 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [0.7.0] - 2023-06-22

### Added

- Added the `mc-sgx-dcap-type::Collateral` type. This can be retrieved via the
Expand Down Expand Up @@ -166,7 +168,8 @@ doc builds for:
- Initial release of FFI bindings crates

<!-- next-url -->
[Unreleased]: https://github.com/mobilecoinfoundation/sgx/compare/v0.6.1...HEAD
[Unreleased]: https://github.com/mobilecoinfoundation/sgx/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/mobilecoinfoundation/sgx/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/mobilecoinfoundation/sgx/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/mobilecoinfoundation/sgx/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/mobilecoinfoundation/sgx/compare/v0.4.2...v0.5.0
Expand Down
12 changes: 6 additions & 6 deletions capable/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-capable"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
authors = ["MobileCoin"]
rust-version = "1.62.1"
Expand All @@ -13,11 +13,11 @@ categories = ["api-bindings", "hardware-support"]
keywords = ["sgx"]

[dependencies]
mc-sgx-capable-sys = { path = "sys", version = "=0.6.1" }
mc-sgx-capable-sys-types = { path = "sys/types", version = "=0.6.1" }
mc-sgx-capable-types = { path = "types", version = "=0.6.1" }
mc-sgx-core-types = { path = "../core/types", version = "=0.6.1" }
mc-sgx-util = { path = "../util", version = "=0.6.1" }
mc-sgx-capable-sys = { path = "sys", version = "=0.7.0" }
mc-sgx-capable-sys-types = { path = "sys/types", version = "=0.7.0" }
mc-sgx-capable-types = { path = "types", version = "=0.7.0" }
mc-sgx-core-types = { path = "../core/types", version = "=0.7.0" }
mc-sgx-util = { path = "../util", version = "=0.7.0" }

[dev-dependencies]
yare = "1.0.1"
4 changes: 2 additions & 2 deletions capable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Idiomatic rust for the `sgx_capable` library.
[crate-link]: https://crates.io/crates/mc-sgx-capable
[docs-image]: https://img.shields.io/docsrs/mc-sgx-capable?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-capable
[deps-image]: https://deps.rs/crate/mc-sgx-capable/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-capable/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-capable/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-capable/0.7.0
8 changes: 4 additions & 4 deletions capable/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-capable-sys"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["external-ffi-bindings", "hardware-support"]
description = "FFI linkage for the `sgx_capable` library."
Expand All @@ -15,10 +15,10 @@ rust-version = "1.62.1"
doctest = false

[dependencies]
mc-sgx-capable-sys-types = { path = "types", version = "=0.6.1" }
mc-sgx-core-sys-types = { path = "../../core/sys/types", version = "=0.6.1" }
mc-sgx-capable-sys-types = { path = "types", version = "=0.7.0" }
mc-sgx-core-sys-types = { path = "../../core/sys/types", version = "=0.7.0" }

[build-dependencies]
bindgen = "0.66.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../core/build", version = "=0.6.1" }
mc-sgx-core-build = { path = "../../core/build", version = "=0.7.0" }
4 changes: 2 additions & 2 deletions capable/sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ FFI bindings to the `libsgx_capable` library.
[crate-link]: https://crates.io/crates/mc-sgx-capable-sys
[docs-image]: https://img.shields.io/docsrs/mc-sgx-capable-sys?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-capable-sys
[deps-image]: https://deps.rs/crate/mc-sgx-capable-sys/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-capable-sys/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-capable-sys/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-capable-sys/0.7.0
4 changes: 2 additions & 2 deletions capable/sys/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-capable-sys-types"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["external-ffi-bindings", "hardware-support", "no-std"]
description = "FFI type definitions used by the `sgx_capable` library."
Expand All @@ -17,4 +17,4 @@ doctest = false
[build-dependencies]
bindgen = "0.66.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../../core/build", version = "=0.6.1" }
mc-sgx-core-build = { path = "../../../core/build", version = "=0.7.0" }
4 changes: 2 additions & 2 deletions capable/sys/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ FFI types used by the `sgx_capable` library.
[chat-link]: https://mobilecoin.chat
[docs-image]: https://img.shields.io/docsrs/mc-sgx-capable-sys-types?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-capable-sys-types
[deps-image]: https://deps.rs/crate/mc-sgx-capable-sys-types/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-capable-sys-types/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-capable-sys-types/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-capable-sys-types/0.7.0
8 changes: 4 additions & 4 deletions capable/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-capable-types"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["api-bindings", "hardware-support"]
description = "Rust wrapper for SGX capabilities types."
Expand All @@ -16,9 +16,9 @@ default = []

[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
mc-sgx-capable-sys-types = { path = "../sys/types", version = "=0.6.1" }
mc-sgx-core-types = { path = "../../core/types", version = "=0.6.1" }
mc-sgx-util = { path = "../../util", version = "=0.6.1" }
mc-sgx-capable-sys-types = { path = "../sys/types", version = "=0.7.0" }
mc-sgx-core-types = { path = "../../core/types", version = "=0.7.0" }
mc-sgx-util = { path = "../../util", version = "=0.7.0" }
serde = { version = "1.0.152", default-features = false, features = ["derive"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions capable/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Rust wrappers for types used by the `libsgx_capable` library.
[crate-link]: https://crates.io/crates/mc-sgx-capable-types
[docs-image]: https://img.shields.io/docsrs/mc-sgx-capable-types?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-capable-types
[deps-image]: https://deps.rs/crate/mc-sgx-capable-types/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-capable-types/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-capable-types/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-capable-types/0.7.0
2 changes: 1 addition & 1 deletion core/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-core-build"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["development-tools"]
description = "Build Helpers for SGX FFI Crates"
Expand Down
4 changes: 2 additions & 2 deletions core/sys/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-core-sys-types"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["external-ffi-bindings", "hardware-support", "no-std"]
description = "FFI type definitions used by SGX libraries."
Expand All @@ -20,4 +20,4 @@ serde = { version = "1.0.152", default-features = false, features = ["derive"] }
[build-dependencies]
bindgen = "0.66.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../build", version = "=0.6.1" }
mc-sgx-core-build = { path = "../../build", version = "=0.7.0" }
4 changes: 2 additions & 2 deletions core/sys/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Provides FFI types used by various SGX libraries.
[chat-link]: https://mobilecoin.chat
[docs-image]: https://img.shields.io/docsrs/mc-sgx-core-sys-types?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-core-sys-types
[deps-image]: https://deps.rs/crate/mc-sgx-core-sys-types/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-core-sys-types/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-core-sys-types/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-core-sys-types/0.7.0
6 changes: 3 additions & 3 deletions core/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-core-types"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["api-bindings", "hardware-support"]
description = "Rust wrapper for common SGX types."
Expand All @@ -18,8 +18,8 @@ alloc = []
[dependencies]
bitflags = "2.0.0"
displaydoc = { version = "0.2.3", default-features = false }
mc-sgx-core-sys-types = { path = "../sys/types", version = "=0.6.1" }
mc-sgx-util = { path = "../../util", version = "=0.6.1" }
mc-sgx-core-sys-types = { path = "../sys/types", version = "=0.7.0" }
mc-sgx-util = { path = "../../util", version = "=0.7.0" }
nom = { version = "7.1.2", default-features = false }
rand_core = { version = "0.6.4", default-features = false }
serde = { version = "1.0.152", default-features = false, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions core/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Idiomatic rust wrappers for common SGX types.
[crate-link]: https://crates.io/crates/mc-sgx-core-types
[docs-image]: https://img.shields.io/docsrs/mc-sgx-core-types?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-core-types
[deps-image]: https://deps.rs/crate/mc-sgx-core-types/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-core-types/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-core-types/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-core-types/0.7.0
14 changes: 7 additions & 7 deletions dcap/ql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-dcap-ql"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
authors = ["MobileCoin"]
rust-version = "1.62.1"
Expand All @@ -14,12 +14,12 @@ keywords = ["sgx"]

[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
mc-sgx-core-sys-types = { path = "../../core/sys/types", version = "=0.6.1" }
mc-sgx-core-types = { path = "../../core/types", version = "=0.6.1" }
mc-sgx-dcap-ql-sys = { path = "sys", version = "=0.6.1" }
mc-sgx-dcap-ql-types = { path = "types", version = "=0.6.1" }
mc-sgx-dcap-types = { path = "../types", version = "=0.6.1", features = ["alloc"] }
mc-sgx-util = { path = "../../util", version = "=0.6.1" }
mc-sgx-core-sys-types = { path = "../../core/sys/types", version = "=0.7.0" }
mc-sgx-core-types = { path = "../../core/types", version = "=0.7.0" }
mc-sgx-dcap-ql-sys = { path = "sys", version = "=0.7.0" }
mc-sgx-dcap-ql-types = { path = "types", version = "=0.7.0" }
mc-sgx-dcap-types = { path = "../types", version = "=0.7.0", features = ["alloc"] }
mc-sgx-util = { path = "../../util", version = "=0.7.0" }
once_cell = "1.17.0"

[features]
Expand Down
4 changes: 2 additions & 2 deletions dcap/ql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Idiomatic rust for the `sgx_dcap_ql` library.
[crate-link]: https://crates.io/crates/mc-sgx-dcap-ql
[docs-image]: https://img.shields.io/docsrs/mc-sgx-dcap-ql?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-dcap-ql
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-ql/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-ql/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-ql/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-ql/0.7.0
10 changes: 5 additions & 5 deletions dcap/ql/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-dcap-ql-sys"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["external-ffi-bindings", "hardware-support"]
description = "FFI linkage for the `sgx_dcap_ql` library."
Expand All @@ -16,11 +16,11 @@ rust-version = "1.62.1"
doctest = false

[dependencies]
mc-sgx-core-sys-types = { path = "../../../core/sys/types", version = "=0.6.1" }
mc-sgx-dcap-ql-sys-types = { path = "types", version = "=0.6.1" }
mc-sgx-dcap-sys-types = { path = "../../sys/types", version = "=0.6.1" }
mc-sgx-core-sys-types = { path = "../../../core/sys/types", version = "=0.7.0" }
mc-sgx-dcap-ql-sys-types = { path = "types", version = "=0.7.0" }
mc-sgx-dcap-sys-types = { path = "../../sys/types", version = "=0.7.0" }

[build-dependencies]
bindgen = "0.66.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../../core/build", version = "=0.6.1" }
mc-sgx-core-build = { path = "../../../core/build", version = "=0.7.0" }
4 changes: 2 additions & 2 deletions dcap/ql/sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ FFI linkage for the `sgx_dcap_ql` library.
[crate-link]: https://crates.io/crates/mc-sgx-dcap-ql-sys
[docs-image]: https://img.shields.io/docsrs/mc-sgx-dcap-ql-sys?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-dcap-ql-sys
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-ql-sys/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-ql-sys/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-ql-sys/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-ql-sys/0.7.0
4 changes: 2 additions & 2 deletions dcap/ql/sys/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-dcap-ql-sys-types"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["external-ffi-bindings", "hardware-support", "no-std"]
description = "FFI type definitions for the `sgx_dcap_ql` library."
Expand All @@ -17,4 +17,4 @@ doctest = false
[build-dependencies]
bindgen = "0.66.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../../../core/build", version = "=0.6.1" }
mc-sgx-core-build = { path = "../../../../core/build", version = "=0.7.0" }
4 changes: 2 additions & 2 deletions dcap/ql/sys/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ FFI type definitions used by the `sgx_dcap_ql` library.
[chat-link]: https://mobilecoin.chat
[docs-image]: https://img.shields.io/docsrs/mc-sgx-dcap-ql-sys-types?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-dcap-ql-sys-types
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-ql-sys-types/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-ql-sys-types/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-ql-sys-types/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-ql-sys-types/0.7.0
6 changes: 3 additions & 3 deletions dcap/ql/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-dcap-ql-types"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["api-bindings", "hardware-support"]
description = "Rust wrapper for SGX DCAP QuoteLibrary types."
Expand All @@ -12,8 +12,8 @@ repository = "https://github.com/mobilecoinfoundation/sgx"
rust-version = "1.62.1"

[dependencies]
mc-sgx-core-types = { path = "../../../core/types", version = "=0.6.1" }
mc-sgx-dcap-ql-sys-types = { path = "../sys/types", version = "=0.6.1" }
mc-sgx-core-types = { path = "../../../core/types", version = "=0.7.0" }
mc-sgx-dcap-ql-sys-types = { path = "../sys/types", version = "=0.7.0" }

[dev-dependencies]
yare = "1.0.2"
4 changes: 2 additions & 2 deletions dcap/ql/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Rust wrappers for types used by the `libsgx_dcap_ql` library.
[crate-link]: https://crates.io/crates/mc-sgx-dcap-ql-types
[docs-image]: https://img.shields.io/docsrs/mc-sgx-dcap-ql-types?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-dcap-ql-types
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-ql-types/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-ql-types/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-ql-types/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-ql-types/0.7.0
16 changes: 8 additions & 8 deletions dcap/quoteverify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-dcap-quoteverify"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
authors = ["MobileCoin"]
rust-version = "1.62.1"
Expand All @@ -14,16 +14,16 @@ keywords = ["sgx"]

[dependencies]
displaydoc = { version = "0.2.3", default-features = false }
mc-sgx-dcap-quoteverify-sys = { path = "sys", version = "=0.6.1" }
mc-sgx-dcap-quoteverify-sys-types = { path = "sys/types", version = "=0.6.1" }
mc-sgx-dcap-quoteverify-types = { path = "types", version = "=0.6.1" }
mc-sgx-dcap-sys-types = { path = "../sys/types", version = "=0.6.1" }
mc-sgx-dcap-types = { path = "../types", version = "=0.6.1", features = ["alloc"] }
mc-sgx-util = { path = "../../util", version = "=0.6.1" }
mc-sgx-dcap-quoteverify-sys = { path = "sys", version = "=0.7.0" }
mc-sgx-dcap-quoteverify-sys-types = { path = "sys/types", version = "=0.7.0" }
mc-sgx-dcap-quoteverify-types = { path = "types", version = "=0.7.0" }
mc-sgx-dcap-sys-types = { path = "../sys/types", version = "=0.7.0" }
mc-sgx-dcap-types = { path = "../types", version = "=0.7.0", features = ["alloc"] }
mc-sgx-util = { path = "../../util", version = "=0.7.0" }
once_cell = "1.17.0"

[dev-dependencies]
mc-sgx-dcap-sys-types = { path = "../sys/types", version = "=0.6.1" }
mc-sgx-dcap-sys-types = { path = "../sys/types", version = "=0.7.0" }
serial_test = { version = "2.0.0", default-features = false }
tempfile = "3.3.0"
yare = "1.0.1"
4 changes: 2 additions & 2 deletions dcap/quoteverify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ Minimum supported Rust version can be changed in the future, but it will be done
[crate-link]: https://crates.io/crates/mc-sgx-dcap-quoteverify
[docs-image]: https://img.shields.io/docsrs/mc-sgx-dcap-quoteverify?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-dcap-quoteverify
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-quoteverify/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-quoteverify/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-quoteverify/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-quoteverify/0.7.0

[dcap-reference]: <https://download.01.org/intel-sgx/latest/dcap-latest/linux/docs/Intel_SGX_ECDSA_QuoteLibReference_DCAP_API.pdf>
[dcap-repo]: <https://github.com/intel/SGXDataCenterAttestationPrimitives>
Expand Down
8 changes: 4 additions & 4 deletions dcap/quoteverify/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-dcap-quoteverify-sys"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["external-ffi-bindings", "hardware-support"]
description = "FFI linkage for the `sgx_dcap_quoteverify` library."
Expand All @@ -16,10 +16,10 @@ rust-version = "1.62.1"
doctest = false

[dependencies]
mc-sgx-dcap-quoteverify-sys-types = { path = "types", version = "=0.6.1" }
mc-sgx-dcap-sys-types = { path = "../../../dcap/sys/types", version = "=0.6.1" }
mc-sgx-dcap-quoteverify-sys-types = { path = "types", version = "=0.7.0" }
mc-sgx-dcap-sys-types = { path = "../../../dcap/sys/types", version = "=0.7.0" }

[build-dependencies]
bindgen = "0.66.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../../core/build", version = "=0.6.1" }
mc-sgx-core-build = { path = "../../../core/build", version = "=0.7.0" }
4 changes: 2 additions & 2 deletions dcap/quoteverify/sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ FFI linkage for the `sgx_dcap_quoteverify` library.
[crate-link]: https://crates.io/crates/mc-sgx-dcap-quoteverify-sys
[docs-image]: https://img.shields.io/docsrs/mc-sgx-dcap-quoteverify-sys?style=flat-square
[docs-link]: https://docs.rs/crate/mc-sgx-dcap-quoteverify-sys
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-quoteverify-sys/0.6.1/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-quoteverify-sys/0.6.1
[deps-image]: https://deps.rs/crate/mc-sgx-dcap-quoteverify-sys/0.7.0/status.svg?style=flat-square
[deps-link]: https://deps.rs/crate/mc-sgx-dcap-quoteverify-sys/0.7.0
6 changes: 3 additions & 3 deletions dcap/quoteverify/sys/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mc-sgx-dcap-quoteverify-sys-types"
version = "0.6.1"
version = "0.7.0"
authors = ["MobileCoin"]
categories = ["external-ffi-bindings", "hardware-support", "no-std"]
description = "FFI type definitions used by the `sgx_dcap_quoteverify` library."
Expand All @@ -15,9 +15,9 @@ rust-version = "1.62.1"
doctest = false

[dependencies]
mc-sgx-dcap-sys-types = { path = "../../../sys/types", version = "=0.6.1" }
mc-sgx-dcap-sys-types = { path = "../../../sys/types", version = "=0.7.0" }

[build-dependencies]
bindgen = "0.66.1"
cargo-emit = "0.2.1"
mc-sgx-core-build = { path = "../../../../core/build", version = "=0.6.1" }
mc-sgx-core-build = { path = "../../../../core/build", version = "=0.7.0" }
Loading

0 comments on commit 5156c27

Please sign in to comment.