blob: 16909dbc2d5c2eee67d2a0e8859301cc8a18c7f1 (
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
34
35
36
37
38
|
[package]
name = "catinator"
version = "1.4.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"
[features]
default = []
bench = []
[workspace]
members = ["macros"]
|