-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (33 loc) · 1.14 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
[package]
name = "dynamodb_lock"
description = "Distributed lock backed by Dynamodb"
version = "0.6.1"
authors = [
"Mykhailo Osypov <mykhailo.osypov@gmail.com>",
"R Tyler Croy <rtyler@brokenco.de>",
]
edition = "2018"
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/delta-incubator/dynamodb-lock-rs"
[dependencies]
async-trait = "0.1"
thiserror = "1"
log = "0"
uuid = { version = "1.2", features = ["serde", "v4"] }
# Waiting on fix for regression in 0.48:
# https://github.com/rusoto/rusoto/issues/1980
rusoto_core = { version = "0.47", default-features = false }
rusoto_dynamodb = { version = "0.47", default-features = false }
rusoto_credential = { version = "0.47", default-features = false, optional = true}
rusoto_sts = { version ="0.47", default-features = false, optional = true }
maplit = "1"
tokio = { version = "1", features = ["fs", "macros", "rt", "io-util"] }
[dev-dependencies]
pretty_env_logger = "0.5"
[features]
default = ["rustls"]
sts = ["rusoto_sts",
"rusoto_credential"]
native-tls = ["rusoto_core/native-tls", "rusoto_dynamodb/native-tls"]
rustls = ["rusoto_core/rustls", "rusoto_dynamodb/rustls"]