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