diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-15 06:21:52 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-15 06:21:52 +0000 |
commit | a4c842eae14bef20d3d04ee4313251344edf431f (patch) | |
tree | 1685f11fd6bbe9f85cb51d479770b04692250c0c /Cargo.toml | |
parent | 8615cc2f030240ba2982dba893fe63f11a0c8a88 (diff) |
Deserialize Urls and Dates. Also implement custom Id types
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,6 @@ [package] name = "twitch_api" -version = "0.0.25" +version = "0.0.30" authors = ["David Blajda <blajda@hotmail.com>"] edition = "2018" @@ -12,4 +12,6 @@ dotenv = "0.13.0" serde = "1.0.81" serde_json = "1.0.33" serde_derive = "1.0.81" -chrono = "0.4.6" +chrono = { version = "0.4.6", features = ["serde"]} +url = "1.7.2" +url_serde = "0.2.0" |