feat(proto): create proto crate

This commit is contained in:
Jindřich Moravec 2023-12-11 16:28:12 +01:00
parent cb7b50109e
commit f70fd6250b
2 changed files with 10 additions and 0 deletions

10
proto/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "proto"
version = "0.1.0"
edition = "2021"
[dependencies]
bincode = "2.0.0-rc.3"
anyhow = "1.0.75"
tokio = { version = "1.34.0", features = ["io-util", "macros", "test-util"] }
async-trait = "0.1.74"

0
proto/src/lib.rs Normal file
View file