1[package] 2name = "bindgen-tests" 3edition = "2018" 4version = "0.1.0" 5publish = false 6 7[dev-dependencies] 8bindgen = { path = "../bindgen", features = ["cli", "experimental"] } 9diff = "0.1" 10shlex = "1" 11clap = { version = "4", features = ["derive"] } 12tempfile = "3" 13 14[features] 15logging = ["bindgen/logging"] 16static = ["bindgen/static"] 17runtime = ["bindgen/runtime"] 18which-rustfmt = ["bindgen/which-rustfmt"] 19 20testing_only_docs = ["bindgen/testing_only_docs"] 21testing_only_extra_assertions = ["bindgen/testing_only_extra_assertions"] 22testing_only_libclang_9 = ["bindgen/testing_only_libclang_9"] 23testing_only_libclang_5 = ["bindgen/testing_only_libclang_5"] 24