| 12345678910111213141516171819202122232425 |
- [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]
- bs58 = "0.4"
- borsh = "0.9"
- ed25519-dalek = "1"
- itertools = "0.10"
- serde = { version = "1", default-features = false, features = ["derive"] }
- serde_json = "1"
- thiserror = "1"
- x25519-dalek = { version = "1", features = ["serde"] }
-
- [dev-dependencies]
- anyhow = "1"
- rand = "0.8.5"
- rand_chacha = "0.3"
|