From 5b8e64e398ce5cc3cd8067545836416485b1f7ea Mon Sep 17 00:00:00 2001 From: Joey Sacchini Date: Tue, 29 Sep 2020 15:36:00 -0400 Subject: init commit --- Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..064313f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "mc-proto-rs" +version = "0.1.0" +authors = ["Joey Sacchini "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +serde_json = "1.0" +regex = "1" +lazy_static = "1.4" +rand = "0.7" +flate2 = "1.0.17" +base64 = "0.12.3" +paste = "1.0.1" + +[dependencies.serde] +version = "1.0.116" +features = [ "derive" ] \ No newline at end of file -- cgit