-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (32 loc) · 1.12 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "galvanic-mock"
version = "0.1.3"
authors = ["Christopher Bacher <[email protected]>"]
description = """A behaviour-driven mocking framework for generic traits.
Create mocks for (multiple) traits in a behaviour-driven development mocking framework.
Define the behaviour of mocks and expected method calls using argument patterns.
Supports mocking of generic traits and generic methods.
Requires: nightly"""
homepage = "https://github.com/mindsbackyard/galvanic-mock"
repository = "https://github.com/mindsbackyard/galvanic-mock"
documentation = "https://github.com/mindsbackyard/galvanic-mock"
readme = "Readme.md"
license = "Apache-2.0"
keywords = ["test", "mocking", "TDD", "BDD"]
categories = ["development-tools::testing"]
[dependencies]
synom = "0.11"
quote = "0.3"
lazy_static = "0.2"
galvanic-assert = { version = "0.8", optional = true}
[dependencies.syn]
version = "0.11"
features = ["full", "parsing"]
[dev-dependencies]
galvanic-assert = "0.8"
[lib]
proc-macro = true
[features]
galvanic_assert_integration = ["galvanic-assert"]
[badges]
travis-ci = { repository = "mindsbackyard/galvanic-mock" }