Cargo.toml 409 B

1234567891011121314151617
  1. [package]
  2. name = "printf-compat"
  3. description = "printf reimplemented in Rust"
  4. version = "0.1.1"
  5. repository = "https://github.com/lights0123/printf-compat"
  6. authors = ["lights0123 <developer@lights0123.com>"]
  7. edition = "2018"
  8. license = "MIT OR Apache-2.0"
  9. readme = "README.md"
  10. [dependencies]
  11. bitflags = "1.2.1"
  12. itertools = { version = "0.9.0", default-features = false }
  13. [features]
  14. default = ["std"]
  15. std = []