Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "pyth-lazer-agent"
  3. version = "0.1.0"
  4. edition = "2024"
  5. [dependencies]
  6. pyth-lazer-publisher-sdk = "0.1.5"
  7. pyth-lazer-protocol = "0.7.2"
  8. anyhow = "1.0.98"
  9. backoff = "0.4.0"
  10. bincode = { version = "2.0.1", features = ["serde"] }
  11. clap = { version = "4.5.32", features = ["derive"] }
  12. config = "0.15.11"
  13. derivative = "2.2.0"
  14. ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
  15. futures = "0.3.31"
  16. futures-util = "0.3.31"
  17. http = "1.3.1"
  18. http-body-util = "0.1.3"
  19. humantime-serde = "1.1.1"
  20. hyper = { version = "1.6.0", features = ["http1", "server"] }
  21. hyper-util = { version = "0.1.10", features = ["tokio"] }
  22. protobuf = "3.7.2"
  23. serde = { version = "1.0.219", features = ["derive"] }
  24. serde_json = "1.0.140"
  25. soketto = { version = "0.8.1", features = ["http"] }
  26. solana-keypair = "2.2.1"
  27. tokio = { version = "1.44.1", features = ["full"] }
  28. tokio-tungstenite = { version = "0.26.2", features = ["native-tls", "url"] }
  29. tokio-util = { version = "0.7.14", features = ["compat"] }
  30. tracing = "0.1.41"
  31. tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
  32. url = { version = "2.5.4", features = ["serde"] }