[package] name = "ss3" version = "0.2.0-rc.1" authors = ["Jeremy Chone "] edition = "2021" license = "MIT OR Apache-2.0" description = "Yet another S3 command line utilities... but env driven, per bucket." categories = ["command-line-utilities"] keywords = [ "cli", "aws", "s3", "cloud" ] homepage = "https://github.com/jeremychone/rust-ss3" repository = "https://github.com/jeremychone/rust-ss3" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lints.rust] unsafe_code = "forbid" # unused = "allow" # For exploratory dev. [dependencies] tokio = { version = "1", features = ["full"] } clap = {version = "4", features = ["cargo"]} thiserror = "1" regex = "1" globset = "0.4" # -- File libs pathdiff = "0.2" walkdir = "2" mime_guess = "2" tokio-stream = "0.1" file-size = "1" simple-fs = "0.1.3" # -- Aws libs aws-config = "1.4" aws-runtime = "1.2" aws-sdk-s3 = "1.28" aws-smithy-http = "0.60" aws-types = "1.2" # -- Others http = "1.1" md5 = "0.7" strum = { version = "0.26", features = ["derive"] } [dev-dependencies] # serial_test = "1" # Not used anymore