Cargo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "fee-model"
  3. version = "0.1.0"
  4. description = "Fee calibration utilities for DarkFi"
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://codeberg.org/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [[bin]]
  10. name = "bench"
  11. path = "src/bench.rs"
  12. [[bin]]
  13. name = "capacity"
  14. path = "src/capacity.rs"
  15. [[bin]]
  16. name = "db_bench"
  17. path = "src/db_bench.rs"
  18. [workspace]
  19. [dependencies]
  20. darkfi-sdk = {path = "../../../src/sdk"}
  21. darkfi = {path = "../../../", features = ["zk"]}
  22. darkfi-serial = {path = "../../../src/serial"}
  23. rand = "0.8.5"
  24. serde = {version = "1.0", features = ["derive"]}
  25. serde_json = "1.0"
  26. sled-overlay = "0.1.20"
  27. pasta_curves = "0.5.1"
  28. bridgetree = "0.7.0"
  29. wasmer = {version = "6.1.0", features = ["singlepass"]}
  30. wasmer-compiler-singlepass = {version = "6.1.0"}
  31. smol = "2.0.2"
  32. # Fee modeling specific dependencies
  33. darkfi-contract-test-harness = {path = "../../../src/contract/test-harness"}
  34. darkfi_money_contract = {path = "../../../src/contract/money", features = ["client", "no-entrypoint"]}
  35. darkfi_dao_contract = {path = "../../../src/contract/dao", features = ["client", "no-entrypoint"]}
  36. darkfi_deployooor_contract = {path = "../../../src/contract/deployooor", features = ["client", "no-entrypoint"]}
  37. tracing = "0.1.44"
  38. tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "env-filter"] }
  39. [patch.crates-io]
  40. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v050"}
  41. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v050"}