Skip to content

Commit

Permalink
Merge pull request #47 from dsietz/development
Browse files Browse the repository at this point in the history
0.4.1
  • Loading branch information
dsietz authored Nov 30, 2021
2 parents 0adb076 + b5bced0 commit cb04ed3
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 28 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ environment:
matrix:
- TARGET: x86_64-pc-windows-msvc
BITS: 64
OPENSSL_VERSION: 1_1_1k
OPENSSL_VERSION: 1_1_1L
OPENSSL_DIR: C:\OpenSSL
CHANNEL: stable
- TARGET: i686-pc-windows-msvc
BITS: 32
OPENSSL_VERSION: 1_1_1k
OPENSSL_VERSION: 1_1_1L
OPENSSL_DIR: C:\OpenSSL
CHANNEL: stable
RUST_BACKTRACE: full
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true

coveralls-grcov:
name: Code Coverage
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true

coveralls-grcov:
name: Code Coverage
Expand Down
48 changes: 24 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbd"
version = "0.4.0"
version = "0.4.1"
authors = ["dsietz <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand Down Expand Up @@ -32,33 +32,33 @@ dsg =["bytes", "openssl", "rand"] # Data Security Guard functionality
dpi = ["multimap", "eddie", "levenshtein", "rayon", "regex", "rust-tfidf"] # Data Privacy Inspector functionality

[dependencies]
env_logger = "0.7"
log = "0.4"
serde ="1.0"
serde_derive = "1.0"
serde_json = "1.0"
derive_more = "0.99"
json = "0.12"
env_logger = "~0.7"
log = "~0.4"
serde ="~1.0"
serde_derive = "~1.0"
serde_json = "~1.0"
derive_more = "~0.99"
json = "~0.12"
#actix-rt = { version = "1.1", optional = true }
actix-web = { version = "3", optional = true }
actix-service = { version = "1.0", optional = true }
futures = { version = "0.3", optional = true }
rayon = { version = "1.5", optional = true }
pow_sha256 = { version = "0.2", optional = true }
base64 = { version = "0.12", optional = true }
rand = { version = "0.7", optional = true }
openssl = { version = "0.10", optional = true }
bytes = { version = "0.5", optional = true }
regex = { version = "1.4", optional = true }
eddie = { version = "0.4", optional = true }
multimap = { version = "0.8.2", optional = true }
rust-tfidf = { version = "1.1", optional = true }
levenshtein = { version = "1.0.4", optional = true }
actix-web = { version = "~3", optional = true }
actix-service = { version = "^1", optional = true }
futures = { version = "~0.3", optional = true }
rayon = { version = "~1.5", optional = true }
pow_sha256 = { version = "~0.2", optional = true }
base64 = { version = "~0.12", optional = true }
rand = { version = "~0.7", optional = true }
openssl = { version = "~0.10", optional = true }
bytes = { version = "~0.5", optional = true }
regex = { version = "~1.4", optional = true }
eddie = { version = "~0.4", optional = true }
multimap = { version = "~0.8.2", optional = true }
rust-tfidf = { version = "~1.1", optional = true }
levenshtein = { version = "~1.0.4", optional = true }

[dependencies.reqwest]
version = "0.11"
version = "~0.11"
optional = true
features = ["blocking"]

[dev-dependencies]
actix-rt = "1.1"
actix-rt = "^1"
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Coverage Status](https://coveralls.io/repos/github/dsietz/pbd/badge.svg?branch=master)](https://coveralls.io/github/dsietz/pbd?branch=master)
[![Discussions](https://img.shields.io/github/discussions/dsietz/pbd)](https://github.com/dsietz/pbd/discussions)
[![Docs.rs](https://docs.rs/pbd/badge.svg)](https://docs.rs/pbd)

Linux: [![Build Status](https://github.com/dsietz/pbd/workflows/Master/badge.svg)](https://github.com/dsietz/pbd/actions?query=workflow%3AMaster)
Expand All @@ -22,9 +23,9 @@ For software development teams who implement Privacy by Design practices, this P

## What's New

Here's whats new in 0.4.0:
Here's whats new in 0.4.1:

We've added a new feature to our SDK - the Data Privacy Inspector!
We've performed minor upgrades of the versions of our dependencies in order to keep up with their latest versions.

## Features

Expand Down

0 comments on commit cb04ed3

Please sign in to comment.