s3find 0.2.1

walk a s3 path hierarchy. s3find is an analog of find for s3.
Documentation
[package]
name = "s3find"
authors = ["Andrii Radyk <ander.ender@gmail.com>"]
version = "0.2.1"
description = """
walk a s3 path hierarchy.
s3find is an analog of find for s3.
"""
documentation = "https://github.com/AnderEnder/s3find-rs"
homepage = "https://github.com/AnderEnder/s3find-rs"
repository = "https://github.com/AnderEnder/s3find-rs"
readme = "README.md"
keywords = [
    "find",
    "aws",
    "s3",
    "pattern",
    "regex",
]
categories = ["command-line-utilities"]
license = "BSD-2-Clause"
exclude = [
    ".travis.yml",
    "ci/*",
]
build = "build.rs"

[[bin]]
name = "s3find"
path = "src/bin/s3find.rs"

[badges]
travis-ci = { repository = "AnderEnder/s3find-rs"}
codecov = { repository = "AnderEnder/s3find-rs" }

[dependencies]
rusoto_core = "0.34"
rusoto_s3 = "0.34"
rusoto_credential = "0.13"
structopt = "0.2"
glob = "0.2"
regex = "1"
failure = "0.1"
chrono = "0.4"
futures = "0.1"
indicatif = "0.9"

[dependencies.clap]
version = "2"
default-features = false
features = [ "suggestions", "color" ]

[build-dependencies]
version_check = "0.1"
rusoto_core = "0.34"
structopt = "0.2"
clap = "2"
glob = "0.2"
regex = "1"
failure = "0.1"

[profile.release]
lto = true