您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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"