You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.toml 518B

123456789101112131415161718
  1. [package]
  2. name = "common-api"
  3. version = "0.1.0"
  4. edition = "2021"
  5. authors = ["silvestr@relayz.io"]
  6. description = """
  7. This crate is used between other crates to provide the same
  8. API for signing data and shared types. Please note that all data
  9. structures should be serializable with "serde" and "borsh"
  10. """
  11. [dependencies]
  12. borsh = "0.10"
  13. near-client = { git = "https://github.com/Relayz-io/near-client.git" }
  14. serde = { version = "1", default-features = false, features = ["derive"] }
  15. [dev-dependencies]
  16. serde_json = "1"