github_watcher/Cargo.toml

13 lines
344 B
TOML
Raw Normal View History

2022-04-10 20:33:50 +00:00
[package]
name = "github_watcher"
version = "0.1.0"
edition = "2021"
[dependencies]
2022-05-08 21:03:49 +00:00
log = "0.4.17"
pretty_env_logger = "0.4.0"
reqwest = { version = "0.11.10", features = ["json"] }
serde_json = "1.0.81"
2022-04-10 20:44:18 +00:00
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "sqlite", "migrate" ] }
tokio = { version = "1.16.1", features = ["full"] }