[package]
edition = "2024"
name = "hydro_std"
version = "0.16.0"
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standard library of distributed systems building blocks for Hydro"
documentation = "https://docs.rs/hydro_plus/"
readme = false
license = "Apache-2.0"
repository = "https://github.com/hydro-project/hydro"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
stageleft_macro_entrypoint = ["hydro_lang/stageleft_macro_entrypoint"]
[lib]
name = "hydro_std"
path = "src/lib.rs"
[dependencies.hdrhistogram]
version = "7.5.4"
[dependencies.hydro_lang]
version = "^0.16.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.stageleft]
version = "0.13.5"
[dev-dependencies.ctor]
version = "0.2"
[dev-dependencies.hydro_deploy]
version = "^0.16.0"
[dev-dependencies.hydro_lang]
version = "^0.16.0"
features = [
"deploy",
"sim",
]
[build-dependencies.stageleft_tool]
version = "0.13.5"
[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"