-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 922 Bytes
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
[package]
name = "github_app"
version = "0.1.0"
edition = "2021"
authors = ["InputLayer"]
description = "A Rust library for GitHub App integration with GitOps support - JWT authentication, webhook verification, and Git-based manifest management"
license = "MIT"
repository = "https://github.com/inputlayer/github_app"
homepage = "https://github.com/inputlayer/github_app"
documentation = "https://docs.rs/github_app"
readme = "README.md"
keywords = ["github", "webhook", "gitops", "authentication", "jwt"]
categories = ["api-bindings", "authentication", "web-programming"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
jsonwebtoken = "9.3"
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
chrono = "0.4"
hex = "0.4"
hmac = "0.12"
sha2 = "0.10"
glob = "0.3"
thiserror = "2.0"
[dev-dependencies]
tempfile = "3.10"