From 0fa4c44847c15280ebe4bd8a5e778b99b26e8c30 Mon Sep 17 00:00:00 2001 From: Mingshen Sun Date: Thu, 9 Apr 2020 21:03:11 -0700 Subject: [PATCH] Version bump to 0.2.5 --- CHANGELOG.md | 2 ++ README.md | 8 ++--- crates/either/Cargo.toml | 2 +- crates/getrandom/Cargo.toml | 4 +-- crates/itertools/Cargo.toml | 2 +- crates/lazy-static.rs/Cargo.toml | 2 +- crates/log/Cargo.toml | 6 ++-- 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 | 46 ++++++++++++------------ 12 files changed, 42 insertions(+), 42 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 526630ce..9ed2891f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## [0.2.5] - 2020-04-09 ### Add - getrandom 0.1.14 - num-traits 0.2.11 diff --git a/README.md b/README.md index 9d386941..eccaf4c1 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.4" +version = "0.2.5" 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.4+sgx1.1.1" } -hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } +cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+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.4+sgx1.1.1" } +hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+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 874df4bf..e4f61734 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.4+sgx1.1.1", features = ["derive"], optional = true } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+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/getrandom/Cargo.toml b/crates/getrandom/Cargo.toml index 37a57968..bf31b116 100644 --- a/crates/getrandom/Cargo.toml +++ b/crates/getrandom/Cargo.toml @@ -15,8 +15,8 @@ travis-ci = { repository = "rust-random/getrandom" } appveyor = { repository = "rust-random/getrandom" } [dependencies] -log = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } +log = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } sgx_libc = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } sgx_trts = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } diff --git a/crates/itertools/Cargo.toml b/crates/itertools/Cargo.toml index 2f88835e..c498a6e8 100644 --- a/crates/itertools/Cargo.toml +++ b/crates/itertools/Cargo.toml @@ -23,7 +23,7 @@ bench = false test = false [dependencies] -either = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1", default-features = false } +either = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1", default-features = false } sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } [dev-dependencies] diff --git a/crates/lazy-static.rs/Cargo.toml b/crates/lazy-static.rs/Cargo.toml index 8a80f11a..26cf5abb 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.4+sgx1.1.1" +tag = "v0.2.5+sgx1.1.1" optional = true [features] diff --git a/crates/log/Cargo.toml b/crates/log/Cargo.toml index 03184ffd..ba4bbe3e 100644 --- a/crates/log/Cargo.toml +++ b/crates/log/Cargo.toml @@ -52,9 +52,9 @@ kv_unstable = [] kv_unstable_sval = ["kv_unstable", "sval/fmt"] [dependencies] -cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1", optional = true, default-features = false } -sval = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1", optional = true, default-features = false } +cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1", optional = true, default-features = false } +sval = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1", optional = true, default-features = false } sgx_tstd = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk.git", tag = "v1.1.1", optional = true } [dev-dependencies] diff --git a/crates/rust-smallvec/Cargo.toml b/crates/rust-smallvec/Cargo.toml index e5ffd19f..dd6b46fd 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.4+sgx1.1.1", optional = true } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+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 00930afc..3c826113 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.4+sgx1.1.1", optional = true } +no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1", optional = true } [dev-dependencies] num_cpus = "1.8" diff --git a/crates/sval/Cargo.toml b/crates/sval/Cargo.toml index ed3e12ad..6df68d9f 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.4+sgx1.1.1" +tag = "v0.2.5+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.4+sgx1.1.1" +tag = "v0.2.5+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 5eb032ee..d3c20991 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.4+sgx1.1.1", features = ["derive"] } -serde_test = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1", features = ["derive"] } +serde_test = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+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 47415c31..c208a3ad 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crates-sgx-example" -version = "0.2.4" +version = "0.2.5" authors = ["The Universal Secure Computing Community Authors"] edition = "2018" @@ -15,28 +15,26 @@ mesalock_sgx = [ ] [dependencies] -adler32 = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -anyhow = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -either = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1", features = ["serde"] } -fnv = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -itertools = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -itoa = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -lazy_static = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -log = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -matches = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1" } -ryu = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1", features = ["small", "no-panic"] } -serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+sgx1.1.1", features = ["derive"] } -smallvec = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+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.4+sgx1.1.1" } -sval = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.4+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.4+sgx1.1.1" } - -# Unreleased -getrandom = { path = "../crates/getrandom" } -num-traits = { path = "../crates/num-traits" } -libm = { path = "../crates/libm" } +adler32 = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +anyhow = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +cfg-if = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +either = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1", features = ["serde"] } +fnv = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +getrandom = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +hex = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +itertools = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +itoa = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +lazy_static = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +libm = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +log = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +matches = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +no-panic = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +num-traits = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1" } +ryu = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1", features = ["small", "no-panic"] } +serde = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+sgx1.1.1", features = ["derive"] } +smallvec = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+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.5+sgx1.1.1" } +sval = { git = "https://github.com/universal-secure-computing-community/crates-sgx.git", tag = "v0.2.5+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.5+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