Cargo.toml 740 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "anchor-syn"
  3. version = "0.22.1"
  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. rust-version = "1.56"
  9. edition = "2021"
  10. [features]
  11. init-if-needed = []
  12. idl = []
  13. hash = []
  14. default = []
  15. anchor-debug = []
  16. seeds = []
  17. [dependencies]
  18. proc-macro2 = { version = "1.0", features=["span-locations"]}
  19. proc-macro2-diagnostics = "0.9"
  20. quote = "1.0"
  21. syn = { version = "1.0.60", features = ["full", "extra-traits", "parsing"] }
  22. anyhow = "1.0.32"
  23. heck = "0.3.1"
  24. serde = { version = "1.0.122", features = ["derive"] }
  25. serde_json = "1.0"
  26. sha2 = "0.9.2"
  27. thiserror = "1.0"
  28. bs58 = "0.3.1"