Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dynomite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
async-trait = "0.1"
again = "0.1"
aws-sdk-dynamodb = "0.6"
aws-sdk-dynamodb = "0.8"
bytes = "1"
dynomite-derive = { version = "0.10.0", path = "../dynomite-derive", optional = true }
futures = "0.3"
Expand All @@ -31,7 +31,7 @@ uuid = { version = "0.8", features = ["v4"], optional = true }
chrono = { version = "0.4", optional = true }

[dev-dependencies]
aws-config = "0.6"
aws-config = "0.8"
env_logger = "0.9"
maplit = "1.0"
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion dynomite/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ use chrono::{

// we re-export this because we
// refer to it with in derive macros
use aws_sdk_dynamodb::Blob;
use aws_sdk_dynamodb::types::Blob;
#[doc(hidden)]
pub use dynamodb::model::AttributeValue;
use std::{
Expand Down