-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (33 loc) · 1.16 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
[package]
name = "cocogitto_github_app"
version = "0.3.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/cocogitto/cocogitto-bot"
authors = ["Paul Delafosse <[email protected]>"]
keywords = ["ci", "git", "github-actions", "conventional-commit"]
description = """
A pedantic conventional commit github bot powered by Cocogitto
"""
[dependencies]
cocogitto = { version = "6.1.0", default-features = false, features = [] }
octocrab = { git = "https://github.com/cocogitto/octocrab", branch = "main" }
indoc = "2.0.3"
jsonwebtoken = "9.1.0"
anyhow = "1.0.47"
axum = { version = "0.6.20", features = ["json"] }
axum-macros = "0.3.7"
autometrics = { version = "0.6.0", features = ["prometheus-exporter"] }
tower-http = { version = "0.4.4", features = ["trace"] }
tokio = { version = "1.34.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
config = "0.13.4"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
async-trait = "0.1.72"
[build-dependencies]
vergen = { version = "8.1", features = ["git", "gitcl"] }
[dev-dependencies]
tokio-test = "0.4.2"
indoc = "2.0.4"