4f970bfd88
Bumps [ctest](https://github.com/alexcrichton/ctest) from 0.2.4 to 0.2.6. - [Release notes](https://github.com/alexcrichton/ctest/releases) - [Commits](https://github.com/alexcrichton/ctest/commits) Signed-off-by: dependabot[bot] <support@dependabot.com>
29 lines
443 B
TOML
29 lines
443 B
TOML
[package]
|
|
name = "libc-test"
|
|
version = "0.1.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
build = "build.rs"
|
|
|
|
[dependencies.libc]
|
|
path = ".."
|
|
default-features = false
|
|
|
|
[build-dependencies]
|
|
ctest = "0.2.6"
|
|
|
|
[features]
|
|
default = [ "use_std" ]
|
|
use_std = [ "libc/use_std" ]
|
|
align = [ "libc/align" ]
|
|
|
|
[[test]]
|
|
name = "main"
|
|
path = "test/main.rs"
|
|
harness = false
|
|
|
|
[[test]]
|
|
name = "linux-fcntl"
|
|
path = "test/linux_fcntl.rs"
|
|
harness = false
|
|
|