diff options
| author | Teddy Wing | 2017-11-07 03:02:29 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2017-11-07 03:02:29 +0100 | 
| commit | 3958a7c917976e4e3d5e86be73f2e5289849972f (patch) | |
| tree | 059ceac4520f0b305ca61289911d0f38f1337b7a | |
| parent | cef039d3430c1188581e2a28d8aab1cad9a42e89 (diff) | |
| download | kipper-3958a7c917976e4e3d5e86be73f2e5289849972f.tar.bz2 | |
Add 'json' crate
To parse JSON payloads from GitHub the webhook.
| -rw-r--r-- | Cargo.lock | 7 | ||||
| -rw-r--r-- | Cargo.toml | 1 | 
2 files changed, 8 insertions, 0 deletions
| @@ -2,6 +2,7 @@  name = "kipper"  version = "0.0.1"  dependencies = [ + "json 0.11.10 (registry+https://github.com/rust-lang/crates.io-index)",   "rouille 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",  ] @@ -187,6 +188,11 @@ dependencies = [  ]  [[package]] +name = "json" +version = "0.11.10" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]]  name = "kernel32-sys"  version = "0.2.2"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -546,6 +552,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"  "checksum fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "43f3795b4bae048dc6123a6b972cadde2e676f9ded08aef6bb77f5f157684a82"  "checksum gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5e33ec290da0d127825013597dbdfc28bee4964690c7ce1166cbc2a7bd08b1bb"  "checksum idna 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "014b298351066f1512874135335d62a789ffe78a9974f94b43ed5621951eaf7d" +"checksum json 0.11.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d43dc02ce7e4618209b8912b61e0b373fd5c526fcc50a2907b562f2a47c0f9b1"  "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"  "checksum libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "5ba3df4dcb460b9dfbd070d41c94c19209620c191b0340b929ce748a2bcd42d2"  "checksum log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "880f77541efa6e5cc74e76910c9884d9859683118839d6a1dc3b11e63512565b" @@ -3,4 +3,5 @@ name = "kipper"  version = "0.0.1"  [dependencies] +json = "0.11.10"  rouille = "1.0.3" | 
