[package]
edition = "2024"
rust-version = "1.94.1"
name = "ruststream-kinesis"
version = "0.6.0"
authors = ["RustStream contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Amazon Kinesis Data Streams broker implementation for the RustStream messaging framework."
readme = "README.md"
keywords = [
"aws",
"kinesis",
"streaming",
"broker",
"faststream",
]
categories = [
"asynchronous",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/powersemmi/ruststream-kinesis"
[features]
default = []
dynamodb-lease = ["dep:aws-sdk-dynamodb"]
testing = ["ruststream/testing"]
[lib]
name = "ruststream_kinesis"
path = "src/lib.rs"
[[example]]
name = "kinesis_service"
path = "examples/kinesis_service.rs"
[[test]]
name = "conformance_kinesis"
path = "tests/conformance_kinesis.rs"
[[test]]
name = "integration_kinesis"
path = "tests/integration_kinesis.rs"
[dependencies.aws-config]
version = "1.10"
[dependencies.aws-sdk-dynamodb]
version = "1.119"
features = [
"default-https-client",
"rt-tokio",
]
optional = true
default-features = false
[dependencies.aws-sdk-kinesis]
version = "1.112"
features = [
"default-https-client",
"rt-tokio",
]
default-features = false
[dependencies.bytes]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.ruststream]
version = ">=0.6.0, <0.7.0"
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.ruststream]
version = ">=0.6.0, <0.7.0"
features = [
"conformance",
"testing",
"macros",
"json",
]
default-features = false
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"rt-multi-thread",
"macros",
"sync",
"time",
]
[lints.clippy]
missing_const_for_fn = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
redundant_pub_crate = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "deny"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "deny"
unreachable_pub = "deny"
unsafe_op_in_unsafe_fn = "deny"
unused_qualifications = "warn"