eventific 0.1.0

Eventific is a tool that gives you the needed building blocks for event sourcing
Documentation
[package]
name = "eventific"
version = "0.1.0"
edition = '2018'
license = "MIT"
repository = "https://github.com/Joatin/eventific"
homepage = "https://github.com/Joatin/eventific"
description = "Eventific is a tool that gives you the needed building blocks for event sourcing"
authors = ["Joatin Granlund <granlundjoatin@gmail.com>"]
exclude = ["playground/**/*"]
include = ["Cargo.toml", "src/**/*", "playground/build/**/*"]

[features]
default = ["playground"]
playground = ["hyper", "rust-embed"]
grpc = ["grpcio"]

[[example]]
name = "playground"
required-features = ["playground"]
path = "examples/playground.rs"

[[example]]
name = "grpc"
required-features = ["grpc"]
path = "examples/grpc.rs"

[dependencies]
uuid = { version = "0.7.4", features = ["serde"] }
chrono = { version = "0.4.7", features = ["serde"] }
failure = "0.1.5"
futures = "0.1.28"
slog = "2.5.0"
serde = "1.0.95"
serde_derive = "1.0.95"
hyper = { version = "0.12", optional = true }
tokio = { version = "0.1.22" }
rust-embed = { version = "5.1.0", optional = true, features = ["interpolate-folder-path"] }
grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"], optional = true }
colored = "1.8"

[dev-dependencies]
tokio = "0.1.22"
sloggers = "0.3.2"
uuid = { version = "0.7.4", features = ["v4"]}
grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] }
protobuf = "2.5.0"

[build-dependencies]
walkdir = "2.2.8"
protoc-grpcio = "0.3.1"