forked from huonw/external_mixin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (27 loc) · 778 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
30
31
32
33
34
[package]
name = "external_mixin_umbrella"
version = "0.0.2"
authors = ["Huon Wilson <[email protected]>"]
homepage = "https://github.com/huonw/external_mixin"
repository = "https://github.com/huonw/external_mixin"
documentation = "https://github.com/huonw/external_mixin#external_mixin_base"
license = "MIT/Apache-2.0"
keywords = ["plugin", "code-generation"]
readme = "README.md"
description = """
Backing library for `rust_mixin` and `external_mixin` to keep them
DRY.
"""
[features]
default = []
# allow testing the various error handling paths, via the
# examples/failure.rs test
compile_error = []
[dependencies]
tempdir = "0.3"
[dev-dependencies.external_mixin]
path = "external_mixin"
version = "0"
[dev-dependencies.rust_mixin]
path = "rust_mixin"
version = "0"