Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425
  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. bs58 = "0.4"
  13. borsh = "0.9"
  14. ed25519-dalek = "1"
  15. itertools = "0.10"
  16. serde = { version = "1", default-features = false, features = ["derive"] }
  17. serde_json = "1"
  18. thiserror = "1"
  19. x25519-dalek = { version = "1", features = ["serde"] }
  20. [dev-dependencies]
  21. anyhow = "1"
  22. rand = "0.8.5"
  23. rand_chacha = "0.3"