[dependencies.aws-config]
default-features = false
features = ["rustls"]
version = "1"
[dependencies.aws-sdk-dynamodb]
default-features = false
features = ["rustls", "rt-tokio"]
version = "1"
[dependencies.aws-smithy-runtime-api]
version = "1"
[dependencies.aws-smithy-types-convert]
default-features = false
features = ["convert-streams"]
version = "0.60"
[dependencies.aws-types]
version = "1"
[dependencies.futures-util]
default-features = false
features = ["alloc"]
version = "0.3"
[dependencies.serde]
default-features = false
features = ["derive"]
version = "1"
[dependencies.serde_dynamo]
default-features = false
features = ["aws-sdk-dynamodb+1"]
version = "4"
[dependencies.tokio]
default-features = false
features = ["rt-multi-thread", "time", "sync"]
version = "1"
[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]
features = ["macros", "rt-multi-thread"]
version = "1"
[[example]]
name = "batch_write_with_retry"
path = "examples/batch_write_with_retry.rs"
[lib]
name = "dynamo_table"
path = "src/lib.rs"
[package]
authors = ["Ernestas Poskus <ernestas.poskus@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "asynchronous", "api-bindings"]
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"
edition = "2024"
keywords = ["dynamodb", "aws", "database", "async", "table"]
license = "MIT OR Apache-2.0"
name = "dynamo_table"
readme = "README.md"
repository = "https://github.com/quietscroll/dynamo-table"
version = "0.1.0"
[[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"