-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·65 lines (54 loc) · 1.82 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
60
61
62
63
64
65
[package]
name = "wafflemaker"
description = "WaffleHack's application deployment service"
version = "0.3.3"
authors = ["Alex Krantz <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["wafflectl"]
[dependencies]
# Configuration
globset = "0.4"
structopt = "0.3"
toml = "0.5"
# Deployment
bollard = { version = "0.11", features = ["ssl"] }
git2 = "0.13"
sled = { version = "0.34", features = ["compression"] }
# DNS
redis = { version = "0.21.5", default-features = false, features = ["acl", "aio", "connection-manager", "r2d2", "tokio-comp"] }
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
sentry = { version = "0.25.0", default-features = false, features = ["anyhow", "backtrace", "contexts", "panic", "reqwest", "rustls", "tracing"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "std", "tracing-log"] }
uuid = { version = "0.8", features = ["v4"] }
# Job processing
async-trait = "0.1"
deadqueue = { version = "0.2.0", default-features = false, features = ["unlimited"] }
# Secrets
jsonwebtoken = "7.2"
rand = "0.8"
rand_chacha = "0.3"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] }
url = "2.2"
# Utilities
async-recursion = "0.3"
futures = "0.3"
itertools = '0.10'
once_cell = "1.8"
serde = { version = "1.0", features = ["derive"] }
serde_with = "1.9"
shrinkwraprs = "0.3"
tokio = { version = "1.6", features = ["fs", "macros", "process", "rt", "rt-multi-thread", "signal", "time"] }
tokio-stream = { version = "0.1", features = ["fs"] }
# Webhooks
base64 = "0.13"
bytes = "1.0"
hex = "0.4"
ring = { version = "0.16", default-features = false, features = ["std"] }
serde_json = "1.0"
warp = { version = "0.3", default-features = false }