Cargo.toml 883 B

12345678910111213141516171819202122232425262728293031323334353637
  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. [package.metadata.docs.rs]
  11. all-features = true
  12. rustdoc-args = ["--cfg", "docsrs"]
  13. [features]
  14. allow-missing-optionals = []
  15. anchor-debug = []
  16. event-cpi = []
  17. hash = []
  18. idl-build = ["idl-parse", "idl-types"]
  19. idl-parse = ["idl-types"]
  20. idl-types = []
  21. init-if-needed = []
  22. interface-instructions = []
  23. seeds = []
  24. [dependencies]
  25. anyhow = "1"
  26. bs58 = "0.5"
  27. heck = "0.3"
  28. proc-macro2 = { version = "1", features = ["span-locations"] }
  29. quote = "1"
  30. serde = { version = "1", features = ["derive"] }
  31. serde_json = "1"
  32. sha2 = "0.10"
  33. syn = { version = "1", features = ["full", "extra-traits", "parsing"] }
  34. thiserror = "1"