aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 8bbfb158f3617d8a53913e57cafd9070709a7895 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "catinator"
version = "1.6.5"
authors = ["Max Audron <audron@cocaine.farm>"]
edition = "2018"

license = "ISC"
description = "High Level IRC Bot library and instance"
homepage = "https://gitlab.com/cocainefarm/gnulag/catinator"
repository = "https://gitlab.com/cocainefarm/gnulag/catinator"
documentation = "https://docs.rs/catinator"
readme = "README.md"
keywords = ["irc", "bot", "async"]

exclude = ["deploy", ".cache"]

[dependencies]
macros = { package = "catinator_macros", version = "0", path = "./macros" }

irc = { version = "1", features = [
    "json",
    "tls-rust",
    "ctcp",
], default-features = false }
irc-proto = "1"
sasl = "0.5"
base64 = "0.22"

figment = { version = "0.10", features = ["env", "toml"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"

anyhow = "1"
thiserror = "2"

futures = "0.3"
tokio = { version = "1", features = ["full", "rt-multi-thread"] }

tracing = "0.1"
tracing-subscriber = "0.3"
tracing-futures = "0.2"

regex = "1"

rand = "0.9"

reqwest = { version = "0.12", default-features = false, features = [
    "rustls-tls",
    "gzip",
] }
urlparse = "0.7"
async-trait = "0.1"

bitflags = "2"

[dev-dependencies]
mockito = "1"

[features]
default = []

bench = []

[workspace]
members = ["macros"]