summaryrefslogtreecommitdiff
path: root/protocol
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-12-29 20:58:59 +0100
committerKatharina Fey <kookie@spacekookie.de>2019-12-29 20:58:59 +0100
commitec142871b6032e4f6c11177cf91ad6b0f6941dc4 (patch)
treebad386428aa591dfa2ecd286c90c3744aa273ee5 /protocol
Initial commitHEADmaster
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 {
+
+}