forked from Manishearth/compiletest-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 1.01 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
[package]
name = "compiletest_rs"
version = "0.3.20"
authors = [ "The Rust Project Developers"
, "Thomas Bracht Laumann Jespersen <laumann.thomas@gmail.com>"
, "Manish Goregaokar <manishsmail@gmail.com>"
]
description = "The compiletest utility from the Rust compiler as a standalone testing harness"
license = "Apache-2.0/MIT" # Same as rustc
repository = "https://github.com/laumann/compiletest-rs"
keywords = ["compiletest", "test", "plugin"]
readme = "README.md"
[lib]
name = "compiletest_rs"
[dependencies]
diff = "0.1.10"
filetime = "0.2"
getopts = "0.2"
log = "0.4"
regex = "1.0"
tempfile = { version = "3.0", optional = true }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
rustfix = "0.4.1"
tester = { version = "0.5", optional = true }
libtest = "0.0.1"
[target."cfg(unix)".dependencies]
libc = "0.2"
[target."cfg(windows)".dependencies]
miow = "0.3"
winapi = { version = "0.3", features = ["winerror"] }
[features]
tmp = ["tempfile"]
norustc = []
stable = ["norustc", "tester"]