Skip to content

Commit

Permalink
Merge pull request #32 from dsietz/development
Browse files Browse the repository at this point in the history
Issue 31
  • Loading branch information
dsietz authored Feb 7, 2020
2 parents c315916 + be3a65b commit b997943
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
13 changes: 11 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. An example has been added for this feature.

## Features

- Data Usage Agreements
- Data Tracker Chain
- Data Usage Agreements (dua)
- Data Tracker Chain (dtc)
- Data Security Guard (dsg)

## About

Expand Down

0 comments on commit b997943

Please sign in to comment.