dynomite
dynomite copied to clipboard
⚡🦀 🧨 make your rust types fit DynamoDB and visa versa
`uuid` has made a [major 1.0.0 release](https://github.com/uuid-rs/uuid/releases/tag/1.0.0) and subsequent releases up to 1.1.2. Depending on `dynomite` while trying to upgrade `uuid` results in errors due to multiple crate versions. ##...
👋 Super excited that this project exists! This PR fixes a small typo in an error message returned by `make_dynomite_item`. There shouldn't be an apostrophe here because, in this phrase,...
Cargo.toml ``` [dependencies] rusoto_core = "0.46" dynomite = "0.10.0" ``` src/main.rs ``` use rusoto_core::Region; use dynomite::{ dynamodb::{ DynamoDbClient }, }; fn main() { let client = DynamoDbClient::new(Region::default()); } ``` ```...
Does dynomite work with the official aws rust sdk (https://github.com/awslabs/aws-sdk-rust) ? If not, do you have any plans?
This fixes an issue, whereby `dynomite` would not treat raw identifiers (`r#…`) properly as it would include the syntactical `r#` prefix in the serialized attribute values. For example, the value...
It would be great to see support for using dynomite with Single Table Design. https://github.com/jeremydaly/dynamodb-toolbox is a great option for TypeScript developers that could serve as inspiration.
Looks like this project requires more maintainership to keep up. @softprops, seems like your availability cadence is not enough, what do you think about expanding the maintainers list?
## What did you implement: The `Item` trait currently includes a `key()` method that returns a map from attribute name to attribute value for either the partition key only or...
Updates the requirements on [env_logger](https://github.com/env-logger-rs/env_logger) to permit the latest version. Release notes Sourced from env_logger's releases. v0.9.0 Breaking Changes: Default message format now prints the target instead of the module...
Updates the requirements on [rusoto_core](https://github.com/rusoto/rusoto) to permit the latest version. Changelog Sourced from rusoto_core's changelog. [0.47.0] - 2021-06-29 Update to botocore 1.20.102 Update to serde_urlencoded 0.7 Update to rustc_version 0.4...