-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
39 lines (35 loc) · 1.04 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
[package]
name = "prr"
description = "Mailing list style code reviews for github"
license = "GPL-2.0-or-later"
repository = "https://github.com/danobi/prr"
version = "0.18.0"
edition = "2021"
build = "build.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.4", features = ["derive"] }
git2 = "0.18.1"
http = "1.1.0"
lazy_static = "1.4"
octocrab = "0.38"
prettytable-rs = "0.10.0"
regex = "1.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tokio = { version = "1.17", default-features = false, features = ["macros", "rt-multi-thread"] }
toml = "0.5"
xdg = "2.4"
[dev-dependencies]
pretty_assertions = "1.4.0"
tempfile = "3.8.1"
[build-dependencies]
anyhow = "1.0"
clap = { version = "4.4", features = ["derive"] }
clap_mangen = { version = "0.2.20", optional = true }
clap_complete = { version = "4.5.2", optional = true }
[features]
# Statically link a vendored copy OpenSSL. OpenSSL is used by all of `git2`, `reqwest` and
# `octocrab`, enabling vendoring for just one of them should be enough.
vendored-openssl = ["git2/vendored-openssl"]