Cargo.toml 657 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. edition = "2021"
  3. name = "subxt-tests"
  4. version = "0.1.0"
  5. license = "Apache-2.0"
  6. [dependencies]
  7. anyhow = "1.0.71"
  8. async-trait = "0.1.68"
  9. sp-core = "21.0.0"
  10. sp-runtime = "24.0.0"
  11. sp-weights = "20.0.0"
  12. pallet-contracts-primitives = "24.0.0"
  13. hex = "0.4.3"
  14. num-bigint = "0.4.3"
  15. once_cell = "1.17.2"
  16. parity-scale-codec = { version = "3.6.9", features = ["derive"] }
  17. rand = "0.8.5"
  18. serde_json = "1.0.96"
  19. sp-keyring = "24.0.0"
  20. subxt = { version = "0.31.0", features = ["substrate-compat"] }
  21. tokio = {version = "1.28.2", features = ["rt-multi-thread", "macros", "time"]}
  22. contract-metadata = "4.0.2"
  23. contract-transcode = "4.0.2"
  24. [workspace]
  25. members = []