Cargo.toml 852 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "pyth-stylus"
  3. authors.workspace = true
  4. license.workspace = true
  5. repository.workspace = true
  6. version.workspace = true
  7. edition.workspace = true
  8. [dependencies]
  9. alloy-primitives.workspace = true
  10. alloy-sol-types.workspace = true
  11. alloy-sol-macro.workspace = true
  12. alloy-sol-macro-expander.workspace = true
  13. alloy-sol-macro-input.workspace = true
  14. stylus-sdk.workspace = true
  15. mini-alloc.workspace = true
  16. keccak-const.workspace = true
  17. [dev-dependencies]
  18. motsu.workspace = true
  19. alloy-primitives = { workspace = true, features = ["arbitrary"] }
  20. [features]
  21. # Enables using the standard library. This is not included in the default
  22. # features, because this crate is meant to be used in a `no_std` environment.
  23. # Currently, the std feature is only used for testing purposes.
  24. std = []
  25. [lib]
  26. crate-type = ["lib", "cdylib"]
  27. [lints]
  28. workspace = true