Cargo.toml 676 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "anchor-syn"
  3. version = "0.21.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  5. repository = "https://github.com/project-serum/anchor"
  6. license = "Apache-2.0"
  7. description = "Anchor syntax parsing and code generation tools"
  8. edition = "2018"
  9. [features]
  10. init-if-needed = []
  11. idl = []
  12. hash = []
  13. default = []
  14. anchor-debug = []
  15. seeds = []
  16. [dependencies]
  17. proc-macro2 = "1.0"
  18. proc-macro2-diagnostics = "0.9"
  19. quote = "1.0"
  20. syn = { version = "1.0.60", features = ["full", "extra-traits", "parsing"] }
  21. anyhow = "1.0.32"
  22. heck = "0.3.1"
  23. serde = { version = "1.0.122", features = ["derive"] }
  24. serde_json = "1.0"
  25. sha2 = "0.9.2"
  26. thiserror = "1.0"
  27. bs58 = "0.3.1"