-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 1.27 KB
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
[package]
name = "coldsnap"
version = "0.10.0"
description = "A library and command-line interface for uploading and downloading Amazon EBS snapshots"
authors = ["Ben Cressey <bcressey@amazon.com>"]
license = "Apache-2.0"
edition = "2018"
readme = "README.md"
repository = "https://github.com/awslabs/coldsnap"
keywords = ["AWS", "Amazon", "EBS", "snapshot"]
[features]
# This feature is for backward compatibility but has no effect.
default = ["aws-sdk-rust-rustls"]
aws-sdk-rust-rustls = [ ]
[dependencies]
argh = "0.1"
async-trait = "0.1"
aws-config = { version = "1", default-features = false, features = ["behavior-version-latest", "credentials-process", "default-https-client", "rt-tokio"] }
aws-sdk-ebs = { version = "1", default-features = false, features = ["default-https-client", "rt-tokio"] }
aws-sdk-ec2 = { version = "1", default-features = false, features = ["default-https-client", "rt-tokio"] }
aws-types = "1"
base64 = "0.22"
bytes = "1"
env_logger = "0.11"
futures = "0.3"
indicatif = "0.18"
log = "0.4"
nix = { version = "0.31", default-features = false, features = ["ioctl"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.11"
snafu = "0.9"
tempfile = "3"
tokio = { version = "1", features = ["fs", "io-util", "time", "macros", "rt-multi-thread"] }