-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
67 lines (63 loc) · 2.06 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[package]
name = "dynein"
description = "DynamoDB Command Line Interface"
version = "0.3.0"
authors = ["Takuya Hashimoto <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/awslabs/dynein"
repository = "https://github.com/awslabs/dynein"
keywords = ["cli", "dynamodb", "aws"]
categories = ["command-line-utilities"]
[[bin]]
name = "dy"
path = "src/main.rs"
[dependencies]
aws-config = "1.4.0"
aws-sdk-dynamodb = "1.28.0"
aws-sdk-ec2 = "1.42.0"
aws-smithy-runtime-api = "1.6.0"
aws-smithy-types = "1.1.9"
chrono = "0.4"
clap = { version = "4.5.4", features = ["derive"] }
dialoguer = "0.11.0"
env_logger = "0.11.3"
futures = "0.3.30"
log = "0.4.21"
regex = "1.10.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9.34"
tabwriter = "1.4"
tempfile = "3.10.1"
termcolor = "1.4.1"
tokio = { version = "1.37.0", features = ["full"] }
pest = "2.7.10"
pest_derive = "2.7.10"
bytes = "1.6.1"
itertools = "0.13.0"
console = "0.15.8"
brotli = "6.0.0"
base64 = "0.22.0"
thiserror = "1.0.59"
home = "0.5.9"
[dev-dependencies]
assert_cmd = "2.0.14" # contains helpers make executing the main binary on integration tests easier.
predicates = "3.1.0" # to introduce advanced assertions
once_cell = "1.19.0" # to setup docker container syncrhonously
trycmd = "0.15.1" # snapshot testing for CLI
rand = "0.8.5"