Cargo.toml 616 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. [package]
  3. name = "cms-postd"
  4. version = "1.0.0"
  5. edition = { workspace = true }
  6. license = { workspace = true }
  7. authors = { workspace = true }
  8. publish = false
  9. [dependencies]
  10. anyhow = { workspace = true }
  11. clap = { workspace = true, features = [ "derive" ] }
  12. cms-ident = { workspace = true }
  13. cms-socket = { workspace = true }
  14. cms-socket-post = { workspace = true }
  15. pyo3 = { workspace = true, features = [ "abi3", "auto-initialize", "anyhow" ] }
  16. tokio = { workspace = true, features = [ "rt", "rt-multi-thread", "sync", "signal", "macros", "fs", "io-util", "time" ] }
  17. # vim: ts=4 sw=4 expandtab