1[package] 2name = "libc-test" 3version = "0.1.0" 4authors = ["Alex Crichton <[email protected]>"] 5build = "build.rs" 6 7[dependencies.libc] 8path = ".." 9default-features = false 10 11[build-dependencies] 12ctest = "0.2.6" 13 14[features] 15default = [ "use_std" ] 16use_std = [ "libc/use_std" ] 17align = [ "libc/align" ] 18 19[[test]] 20name = "main" 21path = "test/main.rs" 22harness = false 23 24[[test]] 25name = "linux-fcntl" 26path = "test/linux_fcntl.rs" 27harness = false 28 29