[package]
edition = "2021"
name = "easy-dynamodb"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A easy and simple library for interaction with DynamoDB"
readme = "README.md"
keywords = [
"dynamodb",
"easy",
"simple",
"serverless",
]
license = "Apache-2.0"
repository = "https://github.com/biyard/rust-sdk/tree/main/packages/easy-dynamodb"
[lib]
name = "easy_dynamodb"
path = "src/lib.rs"
[dependencies.aws-config]
version = "1.5.4"
[dependencies.aws-credential-types]
version = "1.2.0"
features = ["hardcoded-credentials"]
[dependencies.aws-sdk-dynamodb]
version = "1.39.0"
features = ["behavior-version-latest"]
[dependencies.serde]
version = "1.0.197"
features = ["derive"]
[dependencies.serde_dynamo]
version = "4.2.14"
features = ["aws-sdk-dynamodb+1"]
[dependencies.serde_json]
version = "1.0.133"
[dependencies.slog]
version = "2.7.0"
[dev-dependencies.chrono]
version = "0.4.38"
[dev-dependencies.tokio]
version = "1.37.0"
features = [
"test-util",
"full",
]