123456789101112131415161718192021 |
- [package]
- name = "printf-compat"
- description = "printf reimplemented in Rust"
- version = "0.1.0"
- repository = "https://github.com/lights0123/printf-compat"
- authors = ["lights0123 <developer@lights0123.com>"]
- edition = "2018"
- license = "MIT OR Apache-2.0"
- readme = "README.md"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- cty = "0.2.1"
- cstr_core = "0.2.2"
- bitflags = "1.2.1"
- itertools = { version = "0.9.0", default-features = false }
- [features]
- default = ["std"]
- std = []
|