aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2021-05-15 13:58:01 +0200
committerMax Audron <audron@cocaine.farm>2021-05-15 13:58:01 +0200
commitd0bff910b0b038ee85bc285bef7a63870a3474ab (patch)
treeb840d0b932c080fa5d5053b6bf66a91f94a80481 /Cargo.toml
init
Diffstat (limited to '')
-rw-r--r--Cargo.toml31
1 files changed, 31 insertions, 0 deletions
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 <audron@cocaine.farm>"]
+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"]