Cargo.toml 859 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "pyth-lazer-protocol"
  3. version = "0.22.0"
  4. edition = "2021"
  5. description = "Pyth Lazer SDK - protocol types."
  6. license = "Apache-2.0"
  7. repository = "https://github.com/pyth-network/pyth-crosschain"
  8. [dependencies]
  9. byteorder = "1.5.0"
  10. anyhow = "1.0.89"
  11. serde = { version = "1.0.210", features = ["derive"] }
  12. serde_json = "1.0"
  13. derive_more = { version = "1.0.0", features = ["from", "into"] }
  14. itertools = "0.13.0"
  15. rust_decimal = "1.36.0"
  16. protobuf = "3.7.2"
  17. humantime-serde = "1.1.1"
  18. mry = { version = "0.13.0", features = ["serde"], optional = true }
  19. chrono = "0.4.41"
  20. humantime = "2.2.0"
  21. hex = "0.4.3"
  22. thiserror = "2.0.12"
  23. utoipa = "5.3.1"
  24. [dev-dependencies]
  25. bincode = "1.3.3"
  26. ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
  27. hex = "0.4.3"
  28. libsecp256k1 = "0.7.1"
  29. bs58 = "0.5.1"
  30. alloy-primitives = "0.8.19"
  31. assert_float_eq = "1.1.4"