15 lines
533 B
TOML
15 lines
533 B
TOML
[package]
|
|
name = "weatherstat"
|
|
version = "0.1.0"
|
|
authors = ["Rob Watson <rfwatson@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
dotenv = "0.15.0"
|
|
reqwest = { version = "0.10.8", features = ["json"] }
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", default-features = false }
|
|
rocket_contrib = { git = "https://github.com/SergioBenitez/Rocket", default-features = false, features = ["handlebars_templates", "json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
slack_api = "0.23.1"
|