[package]
name = "va_list"
version = "0.2.1"
authors = [
"John Hodge <tpg@mutabah.net>",
"Georgy Moshkin <gmoshkin@picodata.io>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provides a rust implementation of the 'va_list' type for a small set of ABIs. Allowing rust implementations of functions like vprintf."
readme = "README.md"
keywords = [
"unsafe",
"va_list",
"ffi",
"c",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/thepowersgang/va_list-rs"
[features]
[lib]
name = "va_list"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.va_list-helper]
version = "0.0.2"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(build_check_all)"]