test_utils 0.1.1

Utility functions to run rust tests.
Documentation
[package]
name = "test_utils"
version = "0.1.1"
description = "Utility functions to run rust tests."
authors = ["Thibaut Roche <thibaut.roche.perso@gmail.com>"]
license = "MIT"
repository = "https://github.com/Aeradriel/rs_test_utils.git"

[dependencies]
diesel = {version = "1.3.2", features = ["postgres","r2d2"], optional = true}
rocket = {version = "0.3.15", optional = true}
dotenv = {version = "0.13.0", optional = true}
lazy_static = {version = "1.0.2", optional = true}

[features]
default = ["postgres", "dotenv", "rocket_support"]
postgres = ["diesel"]
rocket_support = ["rocket", "lazy_static", "diesel"]

[package.metadata.docs.rs]
all-features = true