From 970a9264bdccac0d811cb30d2b46668c50dc2a46 Mon Sep 17 00:00:00 2001 From: Mingshen Sun Date: Tue, 7 Apr 2020 22:23:13 -0700 Subject: [PATCH] Version bump to 0.2.3 --- CHANGELOG.md | 2 ++ README.md | 8 +++--- crates/either/Cargo.toml | 2 +- crates/lazy-static.rs/Cargo.toml | 2 +- crates/rust-smallvec/Cargo.toml | 2 +- crates/ryu/Cargo.toml | 2 +- crates/sval/Cargo.toml | 4 +-- crates/sval/sgx-tests/enclave/Cargo.toml | 4 +-- example/Cargo.toml | 34 +++++++++++------------- 9 files changed, 30 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8638a3eb..5eb80b20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## [0.2.3] - 2020-04-07 ### Add - ryu 1.0.3 - sval 0.5.1 diff --git a/README.md b/README.md index eeaa3ab8..123bbaf9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Here is an example of `Cargo.toml`. ``` [package] name = "crates-sgx-example" -version = "0.2.2" +version = "0.2.3" authors = ["The Universal Secure Computing Community Authors"] edition = "2018" @@ -29,8 +29,8 @@ mesalock_sgx = [ ] [dependencies] -cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } +cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } ``` @@ -88,7 +88,7 @@ SGX_MODE=SW make test sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } // Replace hex = "0.4.2", and pay attention to the tag -hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } +hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } ``` 2. Fix features: add a feature to enable SGX's standard library. For example: diff --git a/crates/either/Cargo.toml b/crates/either/Cargo.toml index ffb10545..2e2104bd 100644 --- a/crates/either/Cargo.toml +++ b/crates/either/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["data-structure", "no_std"] categories = ["data-structures", "no-std"] [dependencies] -serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["derive"], optional = true } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["derive"], optional = true } sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } sgx_tunittest = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } diff --git a/crates/lazy-static.rs/Cargo.toml b/crates/lazy-static.rs/Cargo.toml index 0577d944..ee5ca5d3 100644 --- a/crates/lazy-static.rs/Cargo.toml +++ b/crates/lazy-static.rs/Cargo.toml @@ -19,7 +19,7 @@ sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", t [dependencies.spin] git = "https://github.com/universal-secure-computing-community/crates-sgx.git" -tag = "v0.2.2+sgx1.1.1" +tag = "v0.2.3+sgx1.1.1" optional = true [features] diff --git a/crates/rust-smallvec/Cargo.toml b/crates/rust-smallvec/Cargo.toml index 4435fa57..11f9b3ba 100644 --- a/crates/rust-smallvec/Cargo.toml +++ b/crates/rust-smallvec/Cargo.toml @@ -23,7 +23,7 @@ name = "smallvec" path = "lib.rs" [dependencies] -serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", optional = true } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", optional = true } sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } sgx_tunittest = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } diff --git a/crates/ryu/Cargo.toml b/crates/ryu/Cargo.toml index 55a7ebb6..90e108c6 100644 --- a/crates/ryu/Cargo.toml +++ b/crates/ryu/Cargo.toml @@ -17,7 +17,7 @@ build = "build.rs" small = [] [dependencies] -no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", optional = true } +no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", optional = true } [dev-dependencies] num_cpus = "1.8" diff --git a/crates/sval/Cargo.toml b/crates/sval/Cargo.toml index 2c1aa222..f324b97b 100644 --- a/crates/sval/Cargo.toml +++ b/crates/sval/Cargo.toml @@ -64,13 +64,13 @@ sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", t [dependencies.smallvec] git = "https://github.com/universal-secure-computing-community/crates-sgx.git" -tag = "v0.2.2+sgx1.1.1" +tag = "v0.2.3+sgx1.1.1" default-features = false optional = true [dependencies.serde_lib] git = "https://github.com/universal-secure-computing-community/crates-sgx.git" -tag = "v0.2.2+sgx1.1.1" +tag = "v0.2.3+sgx1.1.1" optional = true default-features = false package = "serde" diff --git a/crates/sval/sgx-tests/enclave/Cargo.toml b/crates/sval/sgx-tests/enclave/Cargo.toml index bfdb650b..9de22491 100644 --- a/crates/sval/sgx-tests/enclave/Cargo.toml +++ b/crates/sval/sgx-tests/enclave/Cargo.toml @@ -12,8 +12,8 @@ default = [] [dependencies] sval = { path = "../..", features = ["std", "test", "serde", "derive", "arbitrary-depth"] } -serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["derive"] } -serde_test = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["derive"] } +serde_test = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } [target.'cfg(not(target_env = "sgx"))'.dependencies] sgx_types = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1" } diff --git a/example/Cargo.toml b/example/Cargo.toml index cd295d32..45a9cc69 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crates-sgx-example" -version = "0.2.2" +version = "0.2.3" authors = ["The Universal Secure Computing Community Authors"] edition = "2018" @@ -15,22 +15,20 @@ mesalock_sgx = [ ] [dependencies] -adler32 = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -anyhow = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -either = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["serde"] } -fnv = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -itoa = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -lazy_static = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["derive"] } -smallvec = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1", features = ["write", "union", "specialization", "may_dangle", "serde"] } -spin = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } -thiserror = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.2+sgx1.1.1" } - -# Unreleased -ryu = { path = "../crates/ryu", features = ["small", "no-panic"] } -sval = { path = "../crates/sval", features = ["std", "test", "serde", "derive", "arbitrary-depth"] } +adler32 = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +anyhow = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +either = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["serde"] } +fnv = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +itoa = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +lazy_static = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +ryu = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["small", "no-panic"] } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["derive"] } +smallvec = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["write", "union", "specialization", "may_dangle", "serde"] } +spin = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } +sval = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1", features = ["std", "test", "serde", "derive", "arbitrary-depth"] } +thiserror = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.3+sgx1.1.1" } sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } \ No newline at end of file