forked from silvio/gerrit-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 810 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
[package]
name = "gerrit-rust"
version = "0.1.23"
authors = ["Silvio Fricke <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
keywords = ["cli", "gerrit", "curl", "api"]
categories = ["api-bindings", "command-line-interface", "web-programming::http-client", "network-programming"]
repository = "https://github.com/silvio/gerrit-rust"
description = "Rust client to gerrit"
build = "build.rs"
[badges]
travis-ci = { repository = "silvio/gerrit-rust" }
[[bin]]
name = "gerrit-rust"
path = "src/bin/gerrit-rust.rs"
doctest = true
[dependencies]
chrono = "0.4"
clap = "2.26"
env_logger = "0.4"
git2 = "0.6"
gron = "0.4"
libgerrit = { path = "libgerrit", version = "0.2.7" }
log = "0.3"
netrc = "0.4.1"
regex = "0.2"
rustc-serialize = "0.3"
serde_json = "1.0"
toml-config = "0.4"
url = "1.5"