This repository was archived by the owner on Jun 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (69 loc) · 1.42 KB
/
Cargo.toml
File metadata and controls
83 lines (69 loc) · 1.42 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
authors = ["Steve Klabnik <steve@steveklabnik.com>"]
build = "build.rs"
name = "thanks"
version = "0.1.0"
[[bin]]
doc = false
name = "thanks"
[[bin]]
doc = false
name = "populate"
path = "src/bin/populate.rs"
[[bin]]
doc = false
name = "update-commit-db"
path = "src/bin/update-commit-db.rs"
[[bin]]
doc = false
name = "new-release"
path = "src/bin/new-release.rs"
[[bin]]
doc = false
name = "the-big-red-button"
path = "src/bin/the-big-red-button.rs"
[[bin]]
doc = false
name = "opt-out"
path = "src/bin/opt-out.rs"
[[bin]]
doc = false
name = "maintenance"
path = "src/bin/maintenance.rs"
[[bin]]
doc = false
name = "visible"
path = "src/bin/visible.rs"
[build-dependencies]
diesel = "1.0.0"
diesel_migrations = "1.4.0"
dotenv = "0.9.0"
[dependencies]
caseless = "0.1.2"
clap = "2.19.0"
dotenv = "0.9.0"
futures = "0.1.7"
regex = "0.2.1"
reqwest = "0.4.0"
semver = "0.6.0"
serde = "0.9.0"
serde_derive = "0.9.0"
serde_json = "0.9.0"
slog = "1.4.1"
slog-term = "1.3.5"
unicode-normalization = "0.1.0"
git2 = "0.8"
lazy_static = "0.2"
libssh2-sys = "0.2.5"
[dependencies.diesel]
version = "1.0.0"
features = ["postgres"]
[dependencies.handlebars]
features = ["serde_type"]
version = "0.25.0"
[dependencies.hyper]
git = "https://github.com/hyperium/hyper"
rev = "8554904dc941a376b25fbcea85e828ea00c13402"
[dependencies.sparkles]
git = "https://github.com/steveklabnik/sparkles"
rev = "1eebd5c57d78298665a2e9fcd298bd45e6c3060b"