dynamo_table 0.2.0

A high-level DynamoDB table abstraction with get_item, query, update, filter, batch operations, pagination, and type-safe queries
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "dynamo_table"
version = "0.2.0"
authors = ["Ernestas Poskus <ernestas.poskus@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-level DynamoDB table abstraction with get_item, query, update, filter, batch operations, pagination, and type-safe queries"
documentation = "https://docs.rs/dynamo_table"
readme = "README.md"
keywords = [
    "dynamodb",
    "aws",
    "database",
    "async",
    "table",
]
categories = [
    "database",
    "asynchronous",
    "api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/quietscroll/dynamo-table"

[lib]
name = "dynamo_table"
path = "src/lib.rs"

[[example]]
name = "batch_write_with_retry"
path = "examples/batch_write_with_retry.rs"

[[test]]
name = "dynamodb_batch_tests"
path = "tests/dynamodb_batch_tests.rs"

[[test]]
name = "dynamodb_crud_tests"
path = "tests/dynamodb_crud_tests.rs"

[[test]]
name = "dynamodb_gsi_tests"
path = "tests/dynamodb_gsi_tests.rs"

[[test]]
name = "dynamodb_query_tests"
path = "tests/dynamodb_query_tests.rs"

[[test]]
name = "generic_table_methods"
path = "tests/generic_table_methods.rs"

[[test]]
name = "generic_table_test"
path = "tests/generic_table_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "query_pagination_test"
path = "tests/query_pagination_test.rs"

[[test]]
name = "support"
path = "tests/support.rs"

[dependencies.aws-config]
version = "1"
features = ["rustls"]
default-features = false

[dependencies.aws-sdk-dynamodb]
version = "1"
features = [
    "rustls",
    "rt-tokio",
]
default-features = false

[dependencies.aws-smithy-runtime-api]
version = "1"

[dependencies.aws-smithy-types-convert]
version = "0.60"
features = ["convert-streams"]
default-features = false

[dependencies.aws-types]
version = "1"

[dependencies.futures-util]
version = "0.3"
features = ["alloc"]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
default-features = false

[dependencies.serde_dynamo]
version = "4"
features = ["aws-sdk-dynamodb+1"]
default-features = false

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "time",
    "sync",
]
default-features = false

[dependencies.tokio-stream]
version = "0.1"

[dev-dependencies.rusty_ulid]
version = "2"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.serial_test]
version = "3"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]