forked from AltSysrq/rusty-fork
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 731 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (26 loc) · 731 Bytes
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
[package]
name = "rusty-fork"
version = "0.2.2"
authors = ["Jason Lingle"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/altsysrq/rusty-fork"
documentation = "https://docs.rs/rusty-fork"
keywords = ["testing", "process", "fork"]
categories = ["development-tools::testing"]
exclude = ["/gen-readme.sh", "/readme-*.md"]
description = """
Cross-platform library for running Rust tests in sub-processes using a
fork-like interface.
"""
[badges]
travis-ci = { repository = "AltSysrq/rusty-fork" }
[dependencies]
fnv = "1.0"
quick-error = "1.2"
tempfile = "3.0"
wait-timeout = { version = "0.2", optional = true }
[dev-dependencies]
[features]
default = [ "timeout" ]
timeout = [ "wait-timeout" ]