From 2b494e94a8b6b95aaffe9207f7b33bc75b223a8b Mon Sep 17 00:00:00 2001 From: dsietz Date: Thu, 6 Feb 2020 18:55:27 -0500 Subject: [PATCH 1/4] Workign on #31 --- .appveyor.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index e4e3726..0df2623 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,13 +1,22 @@ environment: matrix: - TARGET: x86_64-pc-windows-msvc + BITS: 64 + OPENSSL_VERSION: 1_1_1d + OPENSSL_DIR: C:\OpenSSL CHANNEL: stable - TARGET: i686-pc-windows-msvc + BITS: 32 + OPENSSL_VERSION: 1_0_2u + OPENSSL_DIR: C:\OpenSSL CHANNEL: stable RUST_BACKTRACE: full install: - - ps: Start-FileDownload 'https://slproweb.com/download/Win64OpenSSL-1_1_1d.exe' - - ps: Start-Process "Win64OpenSSL-1_1_1d.exe" -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes" -Wait + # install OpenSSL + - mkdir C:\OpenSSL + - ps: if (Test-Path env:OPENSSL_VERSION) { Start-FileDownload "http://slproweb.com/download/Win${env:BITS}OpenSSL-${env:OPENSSL_VERSION}.exe" } + - if defined OPENSSL_VERSION Win%BITS%OpenSSL-%OPENSSL_VERSION%.exe /SILENT /VERYSILENT /SP- /DIR="C:\OpenSSL" + # install Rust - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin From f31e6f4aaf0b206424151908834272f53185b621 Mon Sep 17 00:00:00 2001 From: dsietz Date: Thu, 6 Feb 2020 19:00:18 -0500 Subject: [PATCH 2/4] updated README with new dsg feature --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e524d3..d3223ad 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,15 @@ For software development teams who implement Privacy by Design practices, this P ## What's New -Here's whats new in 0.1.0: +Here's whats new in 0.1.1: -The crate is ready for general use. This first release has the basic features for data privacy design patterns. +We added a `Data Security Guard` (dsg) module that makes it easy to prepare data for transfer and simply read it when received. ## Features - Data Usage Agreements - Data Tracker Chain +- Data Security Guard ## About From 66b719fafcd87dadcf264391f0d9b523728e06c8 Mon Sep 17 00:00:00 2001 From: dsietz Date: Thu, 6 Feb 2020 19:02:56 -0500 Subject: [PATCH 3/4] updated README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3223ad..463fd72 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ For software development teams who implement Privacy by Design practices, this P Here's whats new in 0.1.1: -We added a `Data Security Guard` (dsg) module that makes it easy to prepare data for transfer and simply read it when received. +We added a `Data Security Guard` (dsg) module that makes it easy to prepare data for transfer and simply read it when received. An example has been added for this feature. ## Features From be3a65b0bd5bc0e78459c87b314b9d0909e56554 Mon Sep 17 00:00:00 2001 From: dsietz Date: Thu, 6 Feb 2020 19:03:48 -0500 Subject: [PATCH 4/4] updated README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 463fd72..99b4b88 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ We added a `Data Security Guard` (dsg) module that makes it easy to prepare data ## Features -- Data Usage Agreements -- Data Tracker Chain -- Data Security Guard +- Data Usage Agreements (dua) +- Data Tracker Chain (dtc) +- Data Security Guard (dsg) ## About