Cargo.toml 800 B

123456789101112131415161718192021222324252627282930313233
  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. interface-instructions = []
  20. seeds = []
  21. [dependencies]
  22. anyhow = "1"
  23. bs58 = "0.5"
  24. heck = "0.3"
  25. proc-macro2 = { version = "1", features = ["span-locations"] }
  26. quote = "1"
  27. serde = { version = "1", features = ["derive"] }
  28. serde_json = "1"
  29. sha2 = "0.10"
  30. syn = { version = "1", features = ["full", "extra-traits", "parsing"] }
  31. thiserror = "1"