-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
50 lines (47 loc) · 1.48 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
49
50
#
# snowpatch - continuous integration for patch-based workflows
#
# Copyright (C) 2016-2018 IBM Corporation
# Authors:
# Russell Currey <[email protected]>
# Andrew Donnellan <[email protected]>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# Cargo.toml - cargo build configuration file
#
[package]
name = "snowpatch"
version = "0.9.1"
authors = ["Russell Currey <[email protected]>",
"Andrew Donnellan <[email protected]>"]
homepage = "https://github.com/ruscur/snowpatch"
repository = "https://github.com/ruscur/snowpatch.git"
documentation = "https://github.com/ruscur/snowpatch/tree/master/docs"
description = "continuous integration for patch-based workflows"
readme = "README.md"
license = "GPL-2.0+"
keywords = ["CI", "patch", "patchwork", "jenkins", "git"]
edition = "2018"
[dependencies]
clap = { version = "4.3", features = ["cargo"] }
ron = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
url = { version = "2.4", features = ["serde"] }
ureq = { version = "2.7", features = ["json"] }
env_logger = "0.10"
log = "0.4"
rayon = "1.7"
lazy_static = "1.4"
sled = "0.34"
bincode = "1.3"
git2 = "0.17"
dyn-clone = "1.0"
dirs = "5.0"
[patch.crates-io]
ring = { git = "https://github.com/IBM/ring.git", branch = "ppc-0.16.20" }