Cargo.toml 711 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "anchor-syn"
  3. version = "0.28.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. init-if-needed = []
  13. idl = []
  14. hash = []
  15. default = []
  16. anchor-debug = []
  17. seeds = []
  18. event-cpi = []
  19. [dependencies]
  20. anyhow = "1"
  21. bs58 = "0.5"
  22. heck = "0.3"
  23. proc-macro2 = { version = "1", features=["span-locations"]}
  24. quote = "1"
  25. serde = { version = "1", features = ["derive"] }
  26. serde_json = "1"
  27. sha2 = "0.10"
  28. syn = { version = "1", features = ["full", "extra-traits", "parsing"] }
  29. thiserror = "1"