aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 7b164a33d5816532223d4d61f6fcefc13b1a2a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "catinator"
version = "1.1.0"
authors = ["Max Audron <audron@cocaine.farm>"]
edition = "2018"

[dependencies]
macros = { path = "./macros" }

irc = { version = "0.15", features = ["json", "tls-rust", "ctcp"], default_features = false }
irc-proto = "0.15"
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" }

rand = "0.8.3"

[workspace]
members = ["macros"]