-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (31 loc) · 900 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "s3b"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/dotxlem/s3b"
license = "MIT"
authors = ["Dan Cook <[email protected]>"]
description = "A command line tool for uploading data to Amazon S3, backed by an embedded database."
[dependencies]
anyhow = "1"
aws-config = { version = "1.5", features = ["behavior-version-latest"] }
aws-credential-types = "1.2.1"
aws-sdk-dynamodb = { version = "1.42", features = ["rt-tokio"] }
bincode = "1.3"
blake3 = { version = "1.5", features = ["rayon"] }
brotli = "7.0"
chrono = "0.4"
clap = { version = "4.5", features = ["cargo"] }
cli-table = "0.4"
colored = "2.2"
futures = "0.3"
gluesql = { version = "0.16" }
indicatif = "0.17"
inquire = "0.7"
itertools = "0.13"
object_store = { version = "0.11", features = ["aws"] }
rayon = "1"
serde = "1"
serde_json = "1"
tokio = { version = "1", features = ["full"] }
walkdir = "2.5"