From f70fd6250b0533b1f1995c8042932aa4d6ae2959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jind=C5=99ich=20Moravec?= Date: Mon, 11 Dec 2023 16:28:12 +0100 Subject: [PATCH] feat(proto): create proto crate --- proto/Cargo.toml | 10 ++++++++++ proto/src/lib.rs | 0 2 files changed, 10 insertions(+) create mode 100644 proto/Cargo.toml create mode 100644 proto/src/lib.rs diff --git a/proto/Cargo.toml b/proto/Cargo.toml new file mode 100644 index 0000000..6e5d2fb --- /dev/null +++ b/proto/Cargo.toml @@ -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" diff --git a/proto/src/lib.rs b/proto/src/lib.rs new file mode 100644 index 0000000..e69de29