diff options
| author | Teddy Wing | 2018-04-12 23:54:23 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2018-04-12 23:54:23 +0200 | 
| commit | 71dcba2f063cf763f4ef75ca764b557567dbb5f8 (patch) | |
| tree | e6a315dcd2d31ae842d93c133a562476a2aa5e14 | |
| parent | 0df8a05d795f32d72f9e71e661917be36755fba6 (diff) | |
| download | meetup-find-events-rss-71dcba2f063cf763f4ef75ca764b557567dbb5f8.tar.bz2 | |
meetup: Add 'serde_json' crate
For deserialising JSON from the API to a struct.
| -rw-r--r-- | Cargo.lock | 39 | ||||
| -rw-r--r-- | meetup/Cargo.toml | 1 | 
2 files changed, 40 insertions, 0 deletions
| @@ -1,11 +1,24 @@  [[package]] +name = "dtoa" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]]  name = "getopts"  version = "0.2.17"  source = "registry+https://github.com/rust-lang/crates.io-index"  [[package]] +name = "itoa" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]]  name = "meetup"  version = "0.0.1" +dependencies = [ + "serde_json 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)", +]  [[package]]  name = "meetup-find-events-rss" @@ -15,5 +28,31 @@ dependencies = [   "meetup 0.0.1",  ] +[[package]] +name = "num-traits" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde_json" +version = "1.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)", +] +  [metadata] +"checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab"  "checksum getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "b900c08c1939860ce8b54dc6a89e26e00c04c380fd0e09796799bd7f12861e05" +"checksum itoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c069bbec61e1ca5a596166e55dfe4773ff745c3d16b700013bcaff9a6df2c682" +"checksum num-traits 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dee092fcdf725aee04dd7da1d21debff559237d49ef1cb3e69bcb8ece44c7364" +"checksum serde 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)" = "d3bcee660dcde8f52c3765dd9ca5ee36b4bf35470a738eb0bd5a8752b0389645" +"checksum serde_json 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = "5c508584d9913df116b91505eec55610a2f5b16e9ed793c46e4d0152872b3e74" diff --git a/meetup/Cargo.toml b/meetup/Cargo.toml index 43679a7..f3a15c9 100644 --- a/meetup/Cargo.toml +++ b/meetup/Cargo.toml @@ -3,3 +3,4 @@ name = "meetup"  version = "0.0.1"  [dependencies] +serde_json = "1.0" | 
