12345678910111213141516171819 |
- [package]
- name = "common-api"
- version = "0.1.0"
- edition = "2021"
- authors = ["silvestr@relayz.io"]
- description = """
- This crate is used between other crates to provide the same
- API for signing data and shared types. Please note that all data
- structures should be serializable with "serde" and "borsh"
- """
-
- [dependencies]
- borsh = "0.9"
- near-account-id = { version = "0.15" }
- near-client = "0.1"
- serde = { version = "1", default-features = false, features = ["derive"] }
-
- [dev-dependencies]
- serde_json = "1"
|