[package]
edition = "2024"
name = "hydro_deploy_integration"
version = "0.16.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "`hydro_deploy` integration for deploying Rust crates."
documentation = "https://docs.rs/hydro_deploy_integration/"
readme = false
license = "Apache-2.0"
repository = "https://github.com/hydro-project/hydro"
resolver = "2"
[lib]
name = "hydro_deploy_integration"
path = "src/lib.rs"
[dependencies.async-recursion]
version = "1.0.0"
[dependencies.async-trait]
version = "0.1.54"
[dependencies.bytes]
version = "1.1.0"
[dependencies.futures]
version = "0.3.0"
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.serde]
version = "1.0.197"
features = ["derive"]
[dependencies.sinktools]
version = "^0.1.0"
[dependencies.tempfile]
version = "3.0.0"
[dependencies.tokio]
version = "1.29.0"
features = [
"rt",
"net",
"time",
]
[dependencies.tokio-stream]
version = "0.1.3"
features = ["net"]
default-features = false
[dependencies.tokio-util]
version = "0.7.5"
features = [
"net",
"codec",
]
[lints.clippy]
alloc_instead_of_core = "warn"
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
explicit_into_iter_loop = "warn"
let_and_return = "allow"
manual_is_variant_and = "warn"
manual_let_else = "warn"
redundant_clone = "warn"
self_named_module_files = "warn"
str_to_string = "warn"
try_err = "warn"
uninlined_format_args = "allow"
unused_async = "warn"
[lints.rust]
impl_trait_overcaptures = "warn"
missing_unsafe_on_extern = "deny"
unsafe_attr_outside_unsafe = "deny"
unused_qualifications = "warn"