43 lines
886 B
TOML
43 lines
886 B
TOML
[package]
|
|
name = "healthpot"
|
|
description = "health monitor for web services"
|
|
version = "0.1.0"
|
|
authors = ["Joakim Hulthe <joakim@hulthe.net>"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
dotenv = "0.13.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
log = "0.4.8"
|
|
futures = "0.3"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
sled = "0.34"
|
|
semver = "0.11"
|
|
duplicate = "0.2"
|
|
handlebars = "3"
|
|
http = "0.2"
|
|
ron = "0.6.4"
|
|
|
|
[dependencies.rocket]
|
|
#version = "0.4"
|
|
git = "https://github.com/SergioBenitez/Rocket"
|
|
branch = "master"
|
|
features = ["secrets"]
|
|
|
|
[dependencies.rocket_contrib]
|
|
#version = "0.4"
|
|
git = "https://github.com/SergioBenitez/Rocket"
|
|
branch = "master"
|
|
features = ["handlebars_templates", "uuid"]
|
|
|
|
[dependencies.tokio]
|
|
version = "1"
|
|
features = ["fs"]
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11"
|
|
default-features = false
|
|
features = ["rustls-tls"]
|