1
1

Cargo.toml 293 B

12345678910111213
  1. [package]
  2. edition = "2021"
  3. license = "MIT OR Apache-2.0"
  4. name = "repeat"
  5. version = "0.1.0"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [lib]
  8. proc-macro = true
  9. [dependencies]
  10. quote = "1.0"
  11. syn = {version = "1.0", features = ["visit-mut"]}