Cargo.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. [package]
  2. name = "fortuna"
  3. version = "7.6.3"
  4. edition = "2021"
  5. [lib]
  6. name = "fortuna"
  7. path = "src/lib.rs"
  8. [dependencies]
  9. anyhow = "1.0.75"
  10. axum = { version = "0.6.20", features = ["json", "ws", "macros"] }
  11. axum-macros = { version = "0.3.8" }
  12. base64 = { version = "0.21.0" }
  13. bincode = "1.3.3"
  14. byteorder = "1.5.0"
  15. clap = { version = "4.4.6", features = ["derive", "cargo", "env"] }
  16. ethabi = "18.0.0"
  17. ethers = { version = "2.0.14", features = ["ws"] }
  18. futures = { version = "0.3.28" }
  19. hex = "0.4.3"
  20. prometheus-client = { version = "0.23.1" }
  21. pythnet-sdk = { path = "../../pythnet/pythnet_sdk", features = ["strum"] }
  22. rand = "0.8.5"
  23. reqwest = { version = "0.11.22", features = ["json", "blocking"] }
  24. serde = { version = "1.0.188", features = ["derive"] }
  25. serde_qs = { version = "0.12.0", features = ["axum"] }
  26. serde_json = "1.0.107"
  27. serde_with = { version = "3.4.0", features = ["hex", "base64"] }
  28. serde_yaml = "0.9.25"
  29. sha3 = "0.10.8"
  30. tokio = { version = "1.33.0", features = ["full"] }
  31. tower-http = { version = "0.4.0", features = ["cors"] }
  32. tracing = { version = "0.1.37", features = ["log"] }
  33. tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
  34. utoipa = { version = "3.4.0", features = ["axum_extras"] }
  35. utoipa-swagger-ui = { version = "3.1.4", features = ["axum"] }
  36. once_cell = "1.18.0"
  37. lazy_static = "1.4.0"
  38. url = "2.5.0"
  39. chrono = { version = "0.4.38", features = [
  40. "clock",
  41. "std",
  42. "serde"
  43. ], default-features = false }
  44. backoff = { version = "0.4.0", features = ["futures", "tokio"] }
  45. thiserror = "1.0.61"
  46. futures-locks = "0.7.1"
  47. sqlx = { version = "0.8", features = [ "runtime-tokio", "sqlite", "chrono" ] }
  48. [dev-dependencies]
  49. axum-test = "13.1.1"