Cargo.toml 947 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "verax"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. async-trait = "0.1.73"
  7. base64 = "0.22.1"
  8. bech32 = "0.11.0"
  9. borsh = { version = "1.3.1", features = ["derive", "bytes", "de_strict_order"] }
  10. chrono = { version = "0.4.31", features = ["serde"] }
  11. futures = { version = "0.3.30", optional = true }
  12. hmac = "0.12.1"
  13. parking_lot = "0.12.2"
  14. rand = "0.8.5"
  15. serde = { version = "1.0.188", features = ["derive"] }
  16. sha2 = "0.10.7"
  17. sqlx = { version = "0.7.1", features = [
  18. "runtime-tokio",
  19. "runtime-async-std-native-tls",
  20. "tls-native-tls",
  21. "sqlite",
  22. "chrono",
  23. ], optional = true }
  24. thiserror = "1.0.48"
  25. tokio = { version = "1.32.0", features = ["full"] }
  26. [dev-dependencies]
  27. rand = "0.8.5"
  28. futures = "0.3.30"
  29. sqlx = { version = "0.7.1", features = [
  30. "runtime-tokio",
  31. "runtime-async-std-native-tls",
  32. "tls-native-tls",
  33. "sqlite",
  34. "chrono",
  35. ] }
  36. [features]
  37. default = []
  38. sqlite = ["sqlx", "futures"]