[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] base64 = "0.13" 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"] }