123456789101112131415161718 |
- [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.10"
- near-client = { git = "https://github.com/Relayz-io/near-client.git" }
- serde = { version = "1", default-features = false, features = ["derive"] }
-
- [dev-dependencies]
- serde_json = "1"
|