Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "verax"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. async-trait = "0.1.73"
  7. bech32 = "0.11.0"
  8. borsh = { version = "1.3.1", features = ["derive", "bytes", "de_strict_order"] }
  9. chrono = { version = "0.4.31", features = ["serde"] }
  10. derive_more = "0.99.17"
  11. futures = { version = "0.3.30", optional = true }
  12. hmac = "0.12.1"
  13. num = "0.4.3"
  14. rand = "0.8.5"
  15. pest = { version = "2.7.10" }
  16. pest_derive = "2.7.10"
  17. serde = { version = "1.0.188", features = ["derive"] }
  18. sha2 = "0.10.7"
  19. sqlx = { version = "0.7.1", features = [
  20. "runtime-tokio",
  21. "runtime-async-std-native-tls",
  22. "tls-native-tls",
  23. "sqlite",
  24. "chrono",
  25. ], optional = true }
  26. thiserror = "1.0.48"
  27. tokio = { version = "1.32.0", features = ["full"] }
  28. [dev-dependencies]
  29. rand = "0.8.5"
  30. futures = "0.3.30"
  31. sqlx = { version = "0.7.1", features = [
  32. "runtime-tokio",
  33. "runtime-async-std-native-tls",
  34. "tls-native-tls",
  35. "sqlite",
  36. "chrono",
  37. ] }
  38. cucumber = "0.21.0"
  39. [[test]]
  40. name = "ledger"
  41. harness = false
  42. [features]
  43. default = ["sqlite"]
  44. sqlite = ["sqlx", "futures"]