summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 5c12251e3d0c252bc9ecaef114fa1c844580a1fe (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
[package]
name = "teawie-bot"
version = "1.0.0"
edition = "2021"
repository = "https://github.com/getchoo/teawieBot"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bottomify = "1.2.0"
color-eyre = "0.6.3"
dotenvy = "0.15.7"
env_logger = "0.11.5"
eyre = { version = "0.6.12", default-features = false, features = [
	"auto-install",
	"track-caller",
] }
log = "0.4.22"
poise = "0.6.1"
rand = "0.8.5"
redis = { version = "0.25.4", features = ["tokio-comp", "tokio-rustls-comp"] }
redis-macros = "0.3.0"
reqwest = { version = "0.12.5", default-features = false, features = [
	"rustls-tls",
	"json",
] }
serde = "1.0.206"
serde_json = "1.0.124"
tokio = { version = "1.38.1", features = [
	"macros",
	"rt-multi-thread",
	"signal",
] }
url = { version = "2.5.2", features = ["serde"] }
uwurandom-rs = "1.1.0"

[lints.rust]
unsafe_code = "forbid"

[lints.clippy]
complexity = "warn"
correctness = "deny"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "deny"