Cargo.toml 990 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "librespot-core"
  3. version = "0.1.3"
  4. authors = ["Paul Lietar <paul@lietar.net>"]
  5. build = "build.rs"
  6. description = "The core functionality provided by librespot"
  7. license = "MIT"
  8. repository = "https://github.com/librespot-org/librespot"
  9. edition = "2018"
  10. [dependencies.librespot-protocol]
  11. path = "../protocol"
  12. version = "0.1.3"
  13. [dependencies]
  14. base64 = "0.10"
  15. byteorder = "1.3"
  16. bytes = "0.4"
  17. error-chain = { version = "0.12", default_features = false }
  18. futures = "0.1"
  19. httparse = "1.3"
  20. hyper = "0.11"
  21. hyper-proxy = { version = "0.4", default_features = false }
  22. lazy_static = "1.3"
  23. log = "0.4"
  24. num-bigint = "0.2"
  25. num-integer = "0.1"
  26. num-traits = "0.2"
  27. protobuf = "~2.14.0"
  28. rand = "0.7"
  29. serde = "1.0"
  30. serde_derive = "1.0"
  31. serde_json = "1.0"
  32. shannon = "0.2.0"
  33. tokio-codec = "0.1"
  34. tokio-core = "0.1"
  35. tokio-io = "0.1"
  36. url = "1.7"
  37. uuid = { version = "0.7", features = ["v4"] }
  38. sha-1 = "0.8"
  39. hmac = "0.7"
  40. pbkdf2 = "0.3"
  41. aes = "0.3"
  42. [build-dependencies]
  43. rand = "0.7"
  44. vergen = "3.0.4"