Cargo.toml 434 B

123456789101112131415161718192021
  1. [package]
  2. name = "nockchain-bitcoin-sync"
  3. version.workspace = true
  4. edition.workspace = true
  5. [dependencies]
  6. zkvm-jetpack.workspace = true
  7. nockapp = { workspace = true }
  8. nockvm = { workspace = true }
  9. nockvm_macros = { workspace = true }
  10. bitcoincore-rpc.workspace = true
  11. ibig = { workspace = true }
  12. tokio = { workspace = true, features = [
  13. "rt",
  14. "macros",
  15. "rt-multi-thread",
  16. "sync",
  17. ] }
  18. tracing = { workspace = true }