Cargo.toml 911 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "ledger-utxo"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. async-trait = "0.1.73"
  8. bincode = { version = "1.3.3", features = ["i128"] }
  9. chrono = { version = "0.4.31", features = ["serde"] }
  10. futures = "0.3.28"
  11. hex = "0.4.3"
  12. serde = { version = "1.0.188", features = ["derive"] }
  13. sha2 = "0.10.7"
  14. sqlx = { version = "0.7.1", features = [
  15. "runtime-tokio",
  16. "runtime-async-std-native-tls",
  17. "tls-native-tls",
  18. "sqlite",
  19. "chrono",
  20. ], optional = true }
  21. strum = "0.25.0"
  22. strum_macros = "0.25.2"
  23. thiserror = "1.0.48"
  24. tokio = { version = "1.32.0", features = ["full"] }
  25. [dev-dependencies]
  26. sqlx = { version = "0.7.1", features = [
  27. "runtime-tokio",
  28. "runtime-async-std-native-tls",
  29. "tls-native-tls",
  30. "sqlite",
  31. "chrono",
  32. ] }
  33. [features]
  34. default = []
  35. sqlite = ["sqlx"]