-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1013 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 1013 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
31
32
33
34
35
[package]
name = "github-dev-app"
version = "0.1.0"
edition = "2021"
description = "A command-line tool that creates GitHub Apps for local development"
repository = "https://github.com/otterbuild/github-dev-app"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0.86"
askama = { version = "0.12.1", features = ["with-axum"] }
askama_axum = "0.4.0"
async-trait = "0.1.80"
axum = "0.7.5"
clap = { version = "4.5.7", features = ["derive"] }
getset = "0.1.2"
open = "5.2.0"
reqwest = { version = "0.13.0", features = ["json"] }
secrecy = { version = "0.10.0", features = ["serde"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
typed-builder = "0.23.0"
typed-fields = { version = "0.6.0", features = ["secret", "serde"] }
url = "2.5.2"
[dev-dependencies]
assert_cmd = "2.0.14"
indoc = "2.0.5"
mockito = "1.4.0"
port_check = "0.3.0"
predicates = "3.1.0"
pretty_assertions = "1.4.0"
tempfile = "3.10.1"