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 = { git = "https://github.com/alexcrichton/ctest" } 13 14[features] 15default = [ "use_std" ] 16use_std = [ "libc/use_std" ] 17 18[[test]] 19name = "main" 20path = "test/main.rs" 21harness = false 22 23[[test]] 24name = "linux-fcntl" 25path = "test/linux_fcntl.rs" 26harness = false 27 28