diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-09 21:17:11 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-09 21:17:11 +0000 |
commit | 17c6e1ecf82d5a68eccdd62f7a9d757d101759fb (patch) | |
tree | f94e1bd4f0dd761074d680048c809801da4bb399 /Cargo.toml |
Init commit. Get json using async reqwest
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0232d21 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "twitch_api" +version = "0.1.0" +authors = ["David Blajda <blajda@hotmail.com>"] +edition = "2018" + +[dependencies] +reqwest = "0.9.5" +futures = "0.1.25" +tokio = "0.1.13" +dotenv = "0.13.0" +serde = "1.0.81" +serde_json = "1.0.33" |