Cargo.toml 611 B

123456789101112131415161718192021
  1. [package]
  2. name = "cborpc"
  3. version = "0.1.0"
  4. authors = ["Iaroslav Gridin <voker57@gmail.com>"]
  5. edition = "2021"
  6. license = "MIT"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. serde = { version = "1.0", features = ["derive"] }
  10. ciborium = { git = "https://github.com/Voker57/ciborium.git" }
  11. anyhow = "1"
  12. thiserror= "1"
  13. serde_bytes = "0.11"
  14. tokio = { version = "1.2", features = ["full"] }
  15. tokio-stream = "0.1"
  16. tokio-util = { version = "0.7.1", features = ["codec"]}
  17. futures-sink = "0.3"
  18. futures-util = { version ="0.3", features = ["sink","io"] }