Cargo.toml 717 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "cmus-rpc-rs"
  3. authors = ["anas-elgarhy"]
  4. version = "0.2.0"
  5. edition = "2021"
  6. license = "MIT"
  7. description = "A Discord Rich Presence for cmus player using rust 🦀💙"
  8. include = [
  9. "src/**/*",
  10. "Cargo.toml",
  11. "LICENSE",
  12. "README.md",
  13. ]
  14. repository = "https://github.com/anas-elgarhy/cmus-rpc-rs"
  15. homepage = "https://github.com/anas-elgarhy/cmus-rpc-rs"
  16. keywords = [
  17. "cmus",
  18. "rpc",
  19. "cmus-rpc",
  20. "cmus-rich-presence",
  21. ]
  22. categories = [
  23. "command-line-interface",
  24. ]
  25. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  26. [dependencies]
  27. discord-rich-presence = "0.2.3"
  28. clap = "3.2.22" # 4.^ it will break the code :(
  29. dirs = "5.0.0"