aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: b96a38031c7f06ef95ab9f0a11c0047fe606ec0c (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.3.0"
authors = ["Max Audron <audron@cocaine.farm>"]
edition = "2018"

[dependencies]
macros = { package = "catinator_macros", version = "0", 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 = { version = "0.2", git = "https://gitlab.com/audron/sedregex" }

rand = "0.8.3"

[workspace]
members = ["macros"]