libc-rs/libc-test/Cargo.toml

35 lines
539 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"
2019-02-12 16:52:06 +01:00
ctest = "0.2"
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 = "cmsg"
path = "test/cmsg.rs"
harness = true