Some checks failed
CI / Build (ubuntu-latest) (push) Waiting to run
CI / Build (windows-latest) (push) Waiting to run
CI / Flake checks (push) Waiting to run
CI / CI Release gate (push) Blocked by required conditions
Docker / Build image (push) Waiting to run
Docker / Docker Release gate (push) Blocked by required conditions
Docker / Push image (push) Blocked by required conditions
Clippy / Run scan (push) Has been cancelled
50 lines
1 KiB
TOML
50 lines
1 KiB
TOML
[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.44.0"
|
|
redis = { version = "0.32.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"
|