-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.23 KB
/
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
33
34
35
36
37
38
39
[package]
name = "lists3"
version = "0.0.3"
description = "Light-weight CLI tool to create a file browser for S3 buckets provisioning bucket listing."
edition = "2021"
authors = ["Vignesh Rao"]
license = "MIT"
rust-version = "1.80.0"
documentation = "https://docs.rs/lists3/latest/lists3"
homepage = "https://github.com/thevickypedia/lists3"
repository = "https://github.com/thevickypedia/lists3"
keywords = ["s3-filebrowser", "bucket-listing"]
categories = ["filesystem", "embedded", "development-tools", "visualization"]
include = ["/src", "LICENSE"]
exclude = [".github", ".gitignore", "README.md"]
[lib]
name = "lists3"
path = "src/lib.rs"
[[bin]]
name = "lists3"
path = "src/main.rs"
# Docs release queue
# https://docs.rs/releases/queue
# Verify docs locally
# cargo doc --no-deps --document-private-items --open
[package.metadata.docs.rs]
rustdoc-args = ["--document-private-items"]
[dependencies]
minijinja = { version = "2.1.0", features = ["loader"] }
url = "2.5.2"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.121"
aws-sdk-s3 = { version = "1.42.0", features = ["behavior-version-latest"] }
aws-config = { version = "1.5.4", features = ["behavior-version-latest"] }
tokio = { version = "1.39.2", features = ["full"] }