summaryrefslogtreecommitdiff
path: root/protocol
diff options
context:
space:
mode:
Diffstat (limited to 'protocol')
-rw-r--r--protocol/Cargo.toml10
-rw-r--r--protocol/src/lib.rs7
2 files changed, 17 insertions, 0 deletions
diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml
new file mode 100644
index 0000000..e0e6938
--- /dev/null
+++ b/protocol/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "libquassel-protocol"
+description = "Implements the quassel RPC protocol"
+version = "0.1.0"
+authors = ["Katharina Fey <kookie@spacekookie.de>"]
+edition = "2018"
+
+[dependencies]
+serde = "1.0"
+async-std = "1.0" \ No newline at end of file
diff --git a/protocol/src/lib.rs b/protocol/src/lib.rs
new file mode 100644
index 0000000..d428f1a
--- /dev/null
+++ b/protocol/src/lib.rs
@@ -0,0 +1,7 @@
+//!
+
+// longSerializerTest in quasseldroid
+
+pub struct Message {
+
+}