pbd 0.0.8

A software development kit for Privacy by Design (PbD).
Documentation
[package]

name = "pbd"

version = "0.0.8"

authors = ["dsietz <davidsietz@yahoo.com>"]

edition = "2018"

readme = "README.md"

license = "Apache-2.0"

keywords = ["data", "privacy", "sdk", "design", "development"]

categories = ["web-programming", "development-tools", "data-structures","config"]

description = "A software development kit for Privacy by Design (PbD)."

documentation = "https://docs.rs/pbd"

repository = "https://github.com/dsietz/pbd"

exclude = [

    "examples/*",

    "target/*",

	"tests/*",

	"benches/*",

]



[lib]

name = "pbd"

path = "src/lib.rs"



[badges]

maintenance = {status = "actively-developed"}



[features]

default = ["dua", "dtc"]

dua = ["actix-web","actix-service","futures", "rayon", "reqwest"] # Data Usage Agreement funcitonality

dtc =["pow_sha256"] # Data Tracker Chain functionality



[dependencies]

env_logger = "0.6"

log = "0.4"

serde ="1.0"

serde_derive = "1.0"

serde_json = "1.0"

derive_more = "0.99"

json = "0.11"

reqwest = { version = "0.9", optional = true }

actix-web = { version = "1.0.9", optional = true }

actix-service = { version = "0.4.2", optional = true }

futures = { version = "0.1", optional = true }

rayon = { version = "1.2.1", optional = true }

pow_sha256 = { version = "0.2", optional = true }