-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
40 lines (36 loc) · 1022 Bytes
/
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
[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.20.0"
edition = "2021"
rust-version = "1.78.0"
build = "build.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.4", features = ["derive"] }
git2 = "0.20.0"
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_complete = "4.5.2"
clap_mangen = "0.2.20"
[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"]