-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (66 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "catppuccin-rockdove"
version = "2.0.0"
description = "🤖 Soothing pastel attacks for Men In The Middle"
repository = "https://github.com/catppuccin/rockdove"
edition = "2021"
keywords = [
"axum",
"catppuccin",
"discord",
"github",
"octocrab",
"rockdove",
"webhook",
]
categories = ["science"]
license-file = "LICENSE"
[[bin]]
name = "rockdove"
path = "src/main.rs"
[lints.clippy]
all = "warn"
pedantic = "warn"
nursery = "warn"
cargo = "warn"
[dependencies]
anyhow = "1.0.86"
axum = "0.7.7"
axum-github-webhook-extract = "0.2.0"
catppuccin = "2.4.0"
envy = "0.4.2"
octocrab = "0.41.0"
reqwest = { version = "0.12.8", features = ["json"] }
serde = "1.0.203"
serde_json = "1.0.117"
thiserror = "1.0.64"
tokio = { version = "1.38.0", features = ["full"] }
tower-http = { version = "0.6.1", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[dev-dependencies]
insta = { version = "1.40.0", features = ["yaml"] }
yare = "3.0.0"
# insta recommends to do this so that it's more "fun" to use, among other things
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu"]
# Which actions to run on pull requests
pr-run-mode = "plan"
[workspace.metadata.dist.github-custom-runners]
global = "ubuntu-22.04"
x86_64-unknown-linux-gnu = "ubuntu-22.04"