-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
59 lines (54 loc) · 1.05 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
51
52
53
54
55
56
57
58
59
[package]
name = "snare"
description = "GitHub webhooks runner daemon"
version = "0.4.11"
homepage = "https://tratt.net/laurie/src/snare/"
repository = "https://github.com/softdevteam/snare/"
authors = ["Laurence Tratt <[email protected]>"]
readme = "README.md"
license = "Apache-2.0 OR MIT"
categories = ["development-tools"]
keywords = ["github", "webhook"]
edition = "2018"
[build-dependencies]
cfgrammar = "0.13"
lrlex = "0.13"
lrpar = "0.13"
rerun_except = "1.0"
[dependencies]
cfgrammar = "0.13"
crypto-common = "0.1"
crypto-mac = "0.11"
getopts = "0.2"
hex = "0.4"
hmac = "0.12"
libc = "0.2"
lrlex = "0.13"
lrpar = "0.13"
nix = "0.26"
num_cpus = "1"
percent-encoding = "2"
pwd = "1"
regex = "1.7"
secstr = "0.5"
serde_json = "1"
sha2 = "0.10"
signal-hook = "0.3"
syslog = "6"
tempfile = "3"
[dev-dependencies]
escargot = "0.5"
wait-timeout = "0.2"
[features]
default = []
_internal_testing = []
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true