From 76f8611ee3345268e2091a9d2e81b53a8b05889c Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Wed, 13 Oct 2021 23:22:16 +0200 Subject: ebus parser in rust --- ebus-rust/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ebus-rust/Cargo.toml (limited to 'ebus-rust/Cargo.toml') diff --git a/ebus-rust/Cargo.toml b/ebus-rust/Cargo.toml new file mode 100644 index 0000000..545a225 --- /dev/null +++ b/ebus-rust/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "ebus" +version = "0.1.0" +authors = ["Yves Fischer "] +edition = "2018" + +[dependencies] +serde = { version = "1.0", features = [ "derive" ] } +quick-xml = { version = "0.22", features = [ "serialize" ] } +nom = "7" +structopt = "0.3" +bytes = "1" +env_logger = "0.9" +log = "0.4" +rinfluxdb = "0.1" +url = "2" \ No newline at end of file -- cgit v1.2.1