forked from rust-lang/rfcbot-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 775 Bytes
/
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
[package]
authors = ["Adam Perry <[email protected]>"]
name = "rfcbot-rs"
version = "0.1.0"
edition = "2018"
# Sorted by alphanumeric order
[dependencies]
dotenv = "0.15"
env_logger = "0.9.0"
hex = "0.4.0"
itertools = "0.10.0"
lazy_static = "1.2.0"
log = "0.4.6"
maplit = "1.0.1"
reqwest = { version = "0.11", features = ["blocking", "json"] }
rocket = "0.4.0"
rocket_contrib = { version = "0.4.0", features = ["json", "handlebars_templates"] }
openssl = "0.10"
serde = "1.0.59"
serde_derive = "1.0.59"
serde_json = "1.0"
toml = "0.5.3"
url = "2.1.0"
serde_path_to_error = "0.1.5"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.diesel]
default-features = false
features = ["postgres", "chrono", "r2d2", "32-column-tables"]
version = "1.4.1"