Further reduce the size of the docker image

Also the deps were upgraded (there's no point of dependabot creating
multiple commits for upgrading deps)

Signed-off-by: Sayan Nandan <nandansayan@outlook.com>
next
Sayan Nandan 4 years ago
parent 597a82ddf0
commit b257b7286d
No known key found for this signature in database
GPG Key ID: C31EFD7DDA12AEE0

@ -1,9 +1,5 @@
# Ignore deps in the target directory
target/debug/deps/
target/debug/incremental/
target/debug/build/
target/release/deps/
target/release/incremental/
target/release/build/
target/doc/
target/rls/
# Ignore everything else
*
# Only include the tdb binary
!target/release/tdb

32
Cargo.lock generated

@ -127,9 +127,9 @@ checksum = "6035b7b9244bf9637cd7ef80b5e1c54404bef92cccd34738c85c45f04ae8b244"
[[package]]
name = "env_logger"
version = "0.8.1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54532e3223c5af90a6a757c90b5c5521564b07e5e7a958681bcd2afad421cdcd"
checksum = "f26ecb66b4bdca6c1409b40fb255eefc2bd4f6d135dab3c3124f80ffa2a9661e"
dependencies = [
"atty",
"humantime",
@ -256,9 +256,9 @@ checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
[[package]]
name = "mio"
version = "0.7.5"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8962c171f57fcfffa53f4df1bb15ec4c8cf26a7569459c9ceb62d94aab0d9584"
checksum = "f33bc887064ef1fd66020c9adfc45bb9f33d75a42096c81e7c56c65b75dd1a8b"
dependencies = [
"libc",
"log",
@ -269,9 +269,9 @@ dependencies = [
[[package]]
name = "miow"
version = "0.3.5"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07b88fb9795d4d36d62a012dfbf49a8f5cf12751f36d31a9dbe66d528e58979e"
checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
dependencies = [
"socket2",
"winapi",
@ -317,9 +317,9 @@ dependencies = [
[[package]]
name = "parking_lot"
version = "0.11.0"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4893845fa2ca272e647da5d0e46660a314ead9c2fdd9a883aabc32e481a8733"
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
dependencies = [
"instant",
"lock_api",
@ -343,9 +343,9 @@ dependencies = [
[[package]]
name = "pin-project-lite"
version = "0.1.7"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282adbf10f2698a7a77f8e983a74b2d18176c19a7fd32a45446139ae7b02b715"
checksum = "6b063f57ec186e6140e2b8b6921e5f1bd89c7356dda5b33acc5401203ca6131c"
[[package]]
name = "ppv-lite86"
@ -503,9 +503,9 @@ checksum = "3757cb9d89161a2f24e1cf78efa0c1fcff485d18e3f55e0aa3480824ddaa0f3f"
[[package]]
name = "socket2"
version = "0.3.12"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
checksum = "7fd8b795c389288baa5f355489c65e71fd48a02104600d15c4cfbc561e9e429d"
dependencies = [
"cfg-if",
"libc",
@ -576,9 +576,9 @@ dependencies = [
[[package]]
name = "termcolor"
version = "1.1.0"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
dependencies = [
"winapi-util",
]
@ -614,9 +614,9 @@ dependencies = [
[[package]]
name = "tokio"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5ca08accbcb46f11fd8d2d1c6158c348b7888009a1f39260bcad66f6a454250"
checksum = "9dfe2523e6fa84ddf5e688151d4e5fddc51678de9752c6512a24714c23818d61"
dependencies = [
"autocfg",
"bytes",

@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
libtdb = {path = "../libtdb"}
tokio = {version = "0.3.3", features = ["full"]}
tokio = {version = "0.3.4", features = ["full"]}
bytes = "0.6.0"
regex = "1.4.2"
lazy_static = "1.4.0"

@ -9,4 +9,4 @@ edition = "2018"
[dependencies]
lazy_static = "1.4.0"
bytes = "0.6.0"
termcolor = "1.1.0"
termcolor = "1.1.1"

@ -7,17 +7,17 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "0.3.3", features = ["full"] }
tokio = { version = "0.3.4", features = ["full"] }
bytes = "0.6.0"
libtdb = {path ="../libtdb"}
bincode = "1.3.1"
parking_lot = "0.11.0"
parking_lot = "0.11.1"
lazy_static = "1.4.0"
serde_derive = "1.0.117"
serde = {version = "1.0.117", features= ["derive"]}
toml = "0.5.7"
clap = {version = "2.33.3", features=["yaml"]}
env_logger = "0.8.1"
env_logger = "0.8.2"
log = "0.4.11"
chrono = "0.4.19"
regex = "1.4.2"
@ -27,4 +27,4 @@ tdb_macros = {path="../tdb-macros"}
jemallocator = "0.3.2"
[dev-dependencies]
tokio = { version = "0.3.3", features = ["test-util"] }
tokio = { version = "0.3.4", features = ["test-util"] }

Loading…
Cancel
Save