From d0bff910b0b038ee85bc285bef7a63870a3474ab Mon Sep 17 00:00:00 2001 From: Max Audron Date: Sat, 15 May 2021 13:58:01 +0200 Subject: init --- Cargo.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..acce7b1 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,31 @@ +[package] +name = "catinator" +version = "0.1.0" +authors = ["Max Audron "] +edition = "2018" + +[dependencies] +macros = { path = "./macros" } + +irc = { path = "/home/audron/repo/github.com/maxaudron/irc", version = "0.15", features = ["json", "tls-rust"], default_features = false } +irc-proto = { path = "/home/audron/repo/github.com/maxaudron/irc/irc-proto" } +sasl = "0.5" +base64 = "0.13" + +serde = { version = "1.0", features = ["derive"] } +toml = "0.5" + +anyhow = "1" + +futures = "0.3" +tokio = { version = "1.5.0", features = ["full", "rt-multi-thread"] } + +tracing = "0.1" +tracing-subscriber = "0.2" +tracing-futures = "0.2" + +regex = "1" +sedregex = { git = "https://gitlab.com/audron/sedregex" } + +[workspace] +members = ["macros"] -- cgit v1.2.3