Cargo.toml 481 B

12345678910111213141516171819202122
  1. [package]
  2. name = "librespot-metadata"
  3. version = "0.1.3"
  4. authors = ["Paul Lietar <paul@lietar.net>"]
  5. description = "The metadata logic for librespot"
  6. license = "MIT"
  7. repository = "https://github.com/librespot-org/librespot"
  8. edition = "2018"
  9. [dependencies]
  10. byteorder = "1.3"
  11. futures = "0.1"
  12. linear-map = "1.2"
  13. protobuf = "~2.14.0"
  14. log = "0.4"
  15. [dependencies.librespot-core]
  16. path = "../core"
  17. version = "0.1.3"
  18. [dependencies.librespot-protocol]
  19. path = "../protocol"
  20. version = "0.1.3"