Cargo.toml 772 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "anchor-syn"
  3. version = "0.29.0"
  4. authors = ["Anchor Maintainers <accounts@200ms.io>"]
  5. repository = "https://github.com/coral-xyz/anchor"
  6. license = "Apache-2.0"
  7. description = "Anchor syntax parsing and code generation tools"
  8. rust-version = "1.60"
  9. edition = "2021"
  10. [features]
  11. allow-missing-optionals = []
  12. anchor-debug = []
  13. event-cpi = []
  14. hash = []
  15. idl-build = ["idl-parse", "idl-types"]
  16. idl-parse = ["idl-types"]
  17. idl-types = []
  18. init-if-needed = []
  19. seeds = []
  20. [dependencies]
  21. anyhow = "1"
  22. bs58 = "0.5"
  23. heck = "0.3"
  24. proc-macro2 = { version = "1", features = ["span-locations"] }
  25. quote = "1"
  26. serde = { version = "1", features = ["derive"] }
  27. serde_json = "1"
  28. sha2 = "0.10"
  29. syn = { version = "1", features = ["full", "extra-traits", "parsing"] }
  30. thiserror = "1"