Cargo.toml 541 B

123456789101112131415161718192021
  1. [package]
  2. name = "printf-compat"
  3. description = "printf reimplemented in Rust"
  4. version = "0.1.0"
  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. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [dependencies]
  12. cty = "0.2.1"
  13. cstr_core = "0.2.2"
  14. bitflags = "1.2.1"
  15. itertools = { version = "0.9.0", default-features = false }
  16. [features]
  17. default = ["std"]
  18. std = []