-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (25 loc) · 777 Bytes
/
Cargo.toml
File metadata and controls
32 lines (25 loc) · 777 Bytes
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
[package]
name = "tool-app"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
metrics = {path="./metrics"}
# Powerful date and time functionality
chrono = { version = "0.4.6", features = ["serde"] }
# For connecting with the Postgres database
diesel = { version = "1.4.4", features = ["chrono", "postgres", "r2d2"] }
diesel_derives = "1.4.1"
r2d2 = "0.8.0"
# Lazy static initialization
lazy_static = "1.3.0"
# Rocket Webserver
rocket = "0.4.4"
rocket_contrib = { version = "0.4.4", features = ["json", "diesel_postgres_pool"] }
# Serialization/Deserialization
serde_json = "1.0.39"
serde = "1.0.90"
serde_derive = "1.0.90"
base64 = "0.21.0"
zip = "0.6.4"
default = "0.1.2"