Cargo.toml 832 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "solana-account-decoder-client-types"
  3. description = "Core RPC client types for solana-account-decoder"
  4. documentation = "https://docs.rs/solana-account-decoder-client-types"
  5. version = { workspace = true }
  6. authors = { workspace = true }
  7. repository = { workspace = true }
  8. homepage = { workspace = true }
  9. license = { workspace = true }
  10. edition = { workspace = true }
  11. [package.metadata.docs.rs]
  12. targets = ["x86_64-unknown-linux-gnu"]
  13. all-features = true
  14. rustdoc-args = ["--cfg=docsrs"]
  15. [features]
  16. agave-unstable-api = []
  17. zstd = ["dep:zstd"]
  18. [dependencies]
  19. base64 = { workspace = true }
  20. bs58 = { workspace = true, features = ["std"] }
  21. serde = { workspace = true }
  22. serde_json = { workspace = true }
  23. solana-account = { workspace = true }
  24. solana-pubkey = { workspace = true }
  25. zstd = { workspace = true, optional = true }