You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

84 lines
1.5 KiB

  1. [package]
  2. authors = ["Julian Ospald <hasufell@posteo.de>"]
  3. categories = [ "multimedia::audio" ]
  4. description = "Volume mixer for the system tray"
  5. documentation = "https://hasufell.github.io/pnmixer-rust/pnmixerlib/"
  6. homepage = "https://github.com/hasufell/pnmixer-rust"
  7. keywords = [ "alsa", "gtk", "mixer" ]
  8. license = "GPL-3.0"
  9. name = "pnmixer-rs"
  10. readme = "README.md"
  11. repository = "https://github.com/hasufell/pnmixer-rust"
  12. version = "0.1.2"
  13. [[bin]]
  14. doc = false
  15. name = "pnmixer-rs"
  16. path = "src/bin.rs"
  17. [dependencies]
  18. alsa = "0.2.0"
  19. alsa-sys = "0.1.1"
  20. error-chain = "0.11.0"
  21. ffi = "0.0.2"
  22. flexi_logger = "0.6.11"
  23. gdk-pixbuf = "0.3.0"
  24. gdk-pixbuf-sys = "0.5.0"
  25. gdk-sys = "0.5.0"
  26. getopts = "0.2.17"
  27. gio = "0.3.0"
  28. glib = "0.4.1"
  29. glib-sys = "0.5.0"
  30. gobject-sys = "0.5.0"
  31. gtk-sys = "0.5.0"
  32. lazy_static = "1.0.0"
  33. libc = "0.2.36"
  34. libnotify = { version = "1.0.2", optional = true }
  35. log = "0.4.1"
  36. png = "0.11.0"
  37. serde = "1.0.27"
  38. serde_derive = "1.0.27"
  39. toml = "0.4.5"
  40. w_result = "0.1.2"
  41. which = "1.0.3"
  42. xdg = "2.1.0"
  43. [dependencies.gdk]
  44. features = [
  45. "v3_10",
  46. "v3_12",
  47. "v3_22",
  48. ]
  49. version = "0.7.0"
  50. [dependencies.gtk]
  51. features = [
  52. "v3_10",
  53. "v3_12",
  54. "v3_22",
  55. ]
  56. version = "0.3.0"
  57. [dependencies.x11]
  58. features = [
  59. "xlib",
  60. "xtst",
  61. ]
  62. version = "2.17.2"
  63. [features]
  64. notify = ["libnotify"]
  65. [lib]
  66. doc = true
  67. name = "pnmixerlib"
  68. path = "src/lib.rs"
  69. [profile.dev]
  70. codegen-units = 1
  71. debug = true
  72. debug-assertions = false
  73. lto = false
  74. opt-level = 0
  75. panic = "unwind"
  76. rpath = false