[package]
edition = "2024"
name = "winterbaume-codecommit"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CodeCommit service implementation for winterbaume"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/moriyoshi/winterbaume"
[lib]
name = "winterbaume_codecommit"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.http]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.winterbaume-core]
version = "0.1.0"
[dev-dependencies.aws-config]
version = "1"
[dev-dependencies.aws-credential-types]
version = "1"
features = ["test-util"]
[dev-dependencies.aws-sdk-codecommit]
version = "1"
[dev-dependencies.aws-smithy-runtime-api]
version = "1"
[dev-dependencies.aws-smithy-types]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[lints.clippy]
box_collection = "allow"
collapsible_if = "allow"
let_and_return = "allow"
needless_update = "allow"
result_large_err = "allow"
single_match = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
[lints.rust]
dead_code = "allow"
unused_mut = "allow"
unused_variables = "allow"