File: Cargo.toml.orig

package info (click to toggle)
rust-rusty-fork 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 200 kB
  • sloc: makefile: 4
file content (32 lines) | stat: -rw-r--r-- 748 bytes parent folder | download
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
[package]
name = "rusty-fork"
version = "0.3.0"
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"]
edition = "2018"

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" ]