Cargo.toml 765 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "anchor-syn"
  3. version = "0.26.0"
  4. authors = ["Serum Foundation <foundation@projectserum.com>"]
  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.59"
  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. [dependencies]
  19. proc-macro2 = { version = "1.0", features=["span-locations"]}
  20. proc-macro2-diagnostics = "0.9"
  21. quote = "1.0"
  22. syn = { version = "1.0.60", features = ["full", "extra-traits", "parsing"] }
  23. anyhow = "1.0.32"
  24. heck = "0.3.1"
  25. serde = { version = "1.0.122", features = ["derive"] }
  26. serde_json = "1.0"
  27. sha2 = "0.9.2"
  28. thiserror = "1.0"
  29. bs58 = "0.3.1"