Cargo.toml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. [package]
  2. name = "librespot"
  3. version = "0.1.0"
  4. authors = ["Librespot Org"]
  5. license = "MIT"
  6. description = "Open Source Spotify client library"
  7. keywords = ["spotify"]
  8. repository = "https://github.com/librespot-org/librespot"
  9. readme = "README.md"
  10. [workspace]
  11. [lib]
  12. name = "librespot"
  13. path = "src/lib.rs"
  14. [[bin]]
  15. name = "librespot"
  16. path = "src/main.rs"
  17. doc = false
  18. [dependencies.librespot-audio]
  19. path = "audio"
  20. version = "0.1.0"
  21. [dependencies.librespot-connect]
  22. path = "connect"
  23. version = "0.1.0"
  24. [dependencies.librespot-core]
  25. path = "core"
  26. version = "0.1.0"
  27. [dependencies.librespot-metadata]
  28. path = "metadata"
  29. version = "0.1.0"
  30. [dependencies.librespot-playback]
  31. path = "playback"
  32. version = "0.1.0"
  33. [dependencies.librespot-protocol]
  34. path = "protocol"
  35. version = "0.1.0"
  36. [dependencies]
  37. base64 = "0.10"
  38. env_logger = "0.6"
  39. futures = "0.1"
  40. getopts = "0.2"
  41. hyper = "0.11"
  42. log = "0.4"
  43. num-bigint = "0.2"
  44. protobuf = "2.8.1"
  45. rand = "0.7"
  46. rpassword = "3.0"
  47. tokio-core = "0.1"
  48. tokio-io = "0.1"
  49. tokio-process = "0.2"
  50. tokio-signal = "0.2"
  51. url = "1.7"
  52. sha-1 = "0.8"
  53. hex = "0.3"
  54. [features]
  55. alsa-backend = ["librespot-playback/alsa-backend"]
  56. portaudio-backend = ["librespot-playback/portaudio-backend"]
  57. pulseaudio-backend = ["librespot-playback/pulseaudio-backend"]
  58. jackaudio-backend = ["librespot-playback/jackaudio-backend"]
  59. rodio-backend = ["librespot-playback/rodio-backend"]
  60. sdl-backend = ["librespot-playback/sdl-backend"]
  61. with-tremor = ["librespot-audio/with-tremor"]
  62. with-vorbis = ["librespot-audio/with-vorbis"]
  63. with-dns-sd = ["librespot-connect/with-dns-sd"]
  64. default = ["librespot-playback/rodio-backend"]
  65. [package.metadata.deb]
  66. maintainer = "librespot-org"
  67. copyright = "2018 Paul Liétar"
  68. license_file = ["LICENSE", "4"]
  69. depends = "$auto"
  70. extended_description = """\
  71. librespot is an open source client library for Spotify. It enables applications \
  72. to use Spotify's service, without using the official but closed-source \
  73. libspotify. Additionally, it will provide extra features which are not \
  74. available in the official library."""
  75. section = "sound"
  76. priority = "optional"
  77. assets = [
  78. ["target/release/librespot", "usr/bin/", "755"],
  79. ["contrib/librespot.service", "lib/systemd/system/", "644"]
  80. ]