From d9831ec32ec1f73deba9c9ee88305fba47c03cf5 Mon Sep 17 00:00:00 2001 From: Justin Mitchell <71776129+MitchellTesla@users.noreply.github.com> Date: Thu, 13 May 2021 10:08:03 -0400 Subject: [PATCH] Update rust-cardano network-ntt --- rust-cardano/network-ntt/Cargo.toml | 22 ++++++++++++++++++++++ rust-cardano/network-ntt/README.md | 5 +++++ 2 files changed, 27 insertions(+) create mode 100644 rust-cardano/network-ntt/Cargo.toml create mode 100644 rust-cardano/network-ntt/README.md diff --git a/rust-cardano/network-ntt/Cargo.toml b/rust-cardano/network-ntt/Cargo.toml new file mode 100644 index 00000000..7c0bb448 --- /dev/null +++ b/rust-cardano/network-ntt/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "network-ntt" +version = "0.1.0" +authors = [ "Nicolas Di Prima " + , "Vincent Hanquez " + , "Eelco Dolstra " + , "Mikhail Zabaluev " + , "Alexander Vershilov " + ] +edition = "2018" + +[dependencies] +slog = "^2.4.1" +futures = "^0.1" +tokio = "^0.1" +network-core = { path = "../network-core" } +chain-core = { path = "../chain-core" } +protocol-tokio = { path = "../protocol-tokio" } +cbor_event = "^2.1" + +[dev-dependencies] +quickcheck = "0.7" diff --git a/rust-cardano/network-ntt/README.md b/rust-cardano/network-ntt/README.md new file mode 100644 index 00000000..3e1274ab --- /dev/null +++ b/rust-cardano/network-ntt/README.md @@ -0,0 +1,5 @@ +# Network transport based implementation + +It defines an implementation of the service based on the +network transport library. +