Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "pyth-lazer-agent"
  3. version = "0.1.1"
  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. base64 = "0.22.1"
  11. bincode = { version = "2.0.1", features = ["serde"] }
  12. clap = { version = "4.5.32", features = ["derive"] }
  13. config = "0.15.11"
  14. derivative = "2.2.0"
  15. ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
  16. futures = "0.3.31"
  17. futures-util = "0.3.31"
  18. http = "1.3.1"
  19. http-body-util = "0.1.3"
  20. humantime-serde = "1.1.1"
  21. hyper = { version = "1.6.0", features = ["http1", "server"] }
  22. hyper-util = { version = "0.1.10", features = ["tokio"] }
  23. protobuf = "3.7.2"
  24. serde = { version = "1.0.219", features = ["derive"] }
  25. serde_json = "1.0.140"
  26. soketto = { version = "0.8.1", features = ["http"] }
  27. solana-keypair = "2.2.1"
  28. tokio = { version = "1.44.1", features = ["full"] }
  29. tokio-tungstenite = { version = "0.26.2", features = ["native-tls", "url"] }
  30. tokio-util = { version = "0.7.14", features = ["compat"] }
  31. tracing = "0.1.41"
  32. tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
  33. url = { version = "2.5.4", features = ["serde"] }
  34. [dev-dependencies]
  35. tempfile = "3.20.0"