[package]
edition = "2024"
name = "boltz-refineable"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A macro for creating 'refinement' types that can be used to partially initialize or mutate a complex struct"
readme = false
license = "Apache-2.0"
repository = "https://github.com/boltz-one/rust-dex"
resolver = "2"
[lib]
name = "boltz_refineable"
path = "src/refineable.rs"
doctest = false
[dependencies.derive_refineable]
version = "0.1.0"
package = "boltz-derive-refineable"
[lints.clippy]
dbg_macro = "deny"
declare_interior_mutable_const = "deny"
disallowed_methods = "deny"
large_enum_variant = "allow"
let_underscore_future = "allow"
nonminimal_bool = "allow"
redundant_clone = "deny"
single_range_in_vec_init = "allow"
todo = "deny"
too_many_arguments = "allow"
type_complexity = "allow"
[lints.clippy.style]
level = "allow"
priority = -1
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0