Cargo.toml 394 B

1234567891011121314151617
  1. [package]
  2. name = "sigma-compiler-derive"
  3. version = "0.1.0-rc2"
  4. edition = "2021"
  5. license = "MIT"
  6. repository = "https://git-crysp.uwaterloo.ca/SigmaProtocol/sigma-compiler"
  7. description = "Derive macros for the sigma-compiler crate"
  8. [lib]
  9. proc-macro = true
  10. [dependencies]
  11. sigma-compiler-core = "0.1.0-rc2"
  12. syn = "2.0"
  13. [patch.crates-io]
  14. sigma-compiler-core = { path = "../sigma-compiler-core" }