Merge pull request #5 from codecrafters-io/sync

Sync with languages repo
This commit is contained in:
Paul Kuruvilla 2021-10-08 00:37:56 +01:00 committed by GitHub
commit 3d24c6283d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

12
Cargo.lock generated
View File

@ -1,7 +1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "arc-swap"
version = "0.4.6"
@ -71,7 +69,9 @@ name = "docker-starter-rust"
version = "0.1.0"
dependencies = [
"bytes",
"libc",
"reqwest",
"serde_json",
"tokio",
]
@ -343,9 +343,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
version = "0.2.70"
version = "0.2.103"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3baa92041a6fec78c687fa0cc2b3fae8884f743d672cf551bed1d6dac6988d0f"
checksum = "dd8f7255a17a627354f321ef0055d63b898c6fb27eff628af4d1b66b7331edf6"
[[package]]
name = "log"
@ -733,9 +733,9 @@ checksum = "99e7b308464d16b56eba9964e4972a3eee817760ab60d88c3f86e1fecb08204c"
[[package]]
name = "serde_json"
version = "1.0.53"
version = "1.0.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "993948e75b189211a9b31a7528f950c6adc21f9720b6438ff80a7fa2f864cea2"
checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"
dependencies = [
"itoa",
"ryu",

View File

@ -22,3 +22,5 @@ edition = "2018"
reqwest = { version = "0.10", features = ["json", "blocking"] } # http requests
bytes = "0.5" # helps wrap responses from reqwest
tokio = { version = "0.2", features = ["full"] } # async http requests
libc = "0.2.103" # for syscalls like chroot
serde_json = "1.0.68" # for json mangling