Cargo.toml 403 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. [package]
  3. name = "cms-socket"
  4. version = "1.0.0"
  5. edition = "2021"
  6. license = "GPL-2.0-or-later"
  7. authors = [ "Michael Büsch <m@bues.ch>" ]
  8. publish = false
  9. [dependencies]
  10. anyhow = "1"
  11. bincode = "1"
  12. cms-systemd = { path = "../cms-systemd" }
  13. libc = "0.2"
  14. serde = { version = "1", features = [ "derive" ] }
  15. tokio = { version = "1", features = [ "net" ] }
  16. # vim: ts=4 sw=4 expandtab