-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
29 lines (20 loc) · 879 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "galvanic-test"
version = "0.2.0"
authors = ["Christopher Bacher <mindsbackyard@gmail.com>"]
edition = "2018"
description = """A testing framework for setting up and tearing up test fixtures/environments with support for parameterised test cases.
This crate is part of galvanic---a complete test framework for Rust."""
homepage = "https://github.com/mindsbackyard/galvanic-test"
repository = "https://github.com/mindsbackyard/galvanic-test"
documentation = "https://github.com/mindsbackyard/galvanic-test"
readme = "Readme.md"
license = "Apache-2.0"
keywords = ["test", "unit-tests", "fixtures", "parameterisation"]
categories = ["development-tools::testing"]
[dependencies]
galvanic-mock = { version = "0.1", optional = true }
[features]
galvanic_mock_integration = ["galvanic-mock"]
[badges]
travis-ci = { repository = "mindsbackyard/galvanic-test" }