-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (44 loc) · 1.22 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
40
41
42
43
44
45
46
47
48
[package]
name = "crabby-merge"
version = "0.6.0"
authors = ["Kesavan Yogeswaran <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/kesyog/crabby-merge"
repository = "https://github.com/kesyog/crabby-merge"
documentation = "https://github.com/kesyog/crabby-merge"
description = "A utility to poll open Bitbucket PR's and merge them based on a configurable trigger."
keywords = ["bitbucket"]
categories = ["command-line-utilities"]
exclude = [
".github",
".mdl_config.yml"
]
[features]
default = ["jenkins"]
jenkins = ["jenkins_api"]
[profile.release]
lto = "thin"
panic = "abort"
[dependencies]
anyhow = "1"
cfg-if = "1"
config = { version = "0.14", default-features = false, features = ["toml"] }
directories = "5"
dirs = "5"
futures = "0.3"
guard = "0.5"
jenkins_api = { version = "0.8", optional = true }
log = "0.4"
once_cell = "1"
regex = "1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
simple_logger = "4"
time = { version = "0.3", features = ["serde"] }
tokio = { version = "1", features = ["rt", "macros"] }
url = "2.2"
[dev-dependencies]
tempdir = "0.3"