-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
50 lines (46 loc) · 1.04 KB
/
Cargo.toml
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
[package]
name = "refraction"
version = "2.0.0"
edition = "2021"
repository = "https://github.com/PrismLauncher/refraction"
license = "GPL-3.0-or-later"
readme = "README.md"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
gray_matter = "0.2.6"
poise = "0.6.1"
serde = "1.0.200"
serde_json = "1.0.116"
[dependencies]
color-eyre = "0.6.3"
dotenvy = "0.15.7"
enum_dispatch = "0.3.13"
env_logger = "0.11.3"
eyre = "0.6.12"
log = "0.4.21"
poise = "0.6.1"
octocrab = "0.42.0"
redis = { version = "0.27.0", features = ["tokio-comp", "tokio-rustls-comp"] }
regex = "1.10.4"
reqwest = { version = "0.12.4", default-features = false, features = [
"rustls-tls",
"json",
] }
serde = "1.0.200"
serde_json = "1.0.116"
tokio = { version = "1.37.0", features = [
"macros",
"rt-multi-thread",
"signal",
] }
rustls = "0.23.13"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
complexity = "warn"
correctness = "deny"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "deny"