libc-rs/libc-test/Cargo.toml

61 lines
981 B
TOML
Raw Normal View History

2015-09-10 07:46:19 +02:00
[package]
name = "libc-test"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
build = "build.rs"
2018-02-27 17:36:45 +01:00
[dependencies.libc]
path = ".."
default-features = false
2015-09-10 07:46:19 +02:00
[build-dependencies]
cc = "=1.0.52"
# FIXME: Use fork ctest until the maintainer gets back.
2020-06-01 18:10:08 +02:00
ctest2 = "0.3"
2018-02-27 17:36:45 +01:00
[features]
default = [ "std" ]
std = [ "libc/std" ]
2018-07-20 11:15:25 +02:00
align = [ "libc/align" ]
2019-01-31 03:18:00 +01:00
extra_traits = [ "libc/extra_traits" ]
2018-02-27 17:36:45 +01:00
[[test]]
name = "main"
path = "test/main.rs"
harness = false
[[test]]
name = "linux-fcntl"
path = "test/linux_fcntl.rs"
harness = false
2018-02-27 17:36:45 +01:00
[[test]]
name = "linux-ipv6"
path = "test/linux_ipv6.rs"
harness = false
[[test]]
name = "linux-elf"
path = "test/linux_elf.rs"
harness = false
[[test]]
name = "linux-strerror_r"
path = "test/linux_strerror_r.rs"
harness = false
[[test]]
name = "linux-termios"
path = "test/linux_termios.rs"
harness = false
[[test]]
name = "cmsg"
path = "test/cmsg.rs"
harness = true
[[test]]
name = "errqueue"
path = "test/errqueue.rs"
harness = true