[package]
edition = "2024"
name = "blockchain_ops"
version = "0.8.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Chain-agnostic blockchain operation traits (BlockChainOps, AssetOps)."
homepage = "https://github.com/richdrich/blockchain_ops_rust"
documentation = "https://docs.rs/blockchain_ops"
readme = "README.md"
keywords = [
"blockchain",
"cryptocurrency",
"traits",
"web3",
]
categories = ["cryptography::cryptocurrencies"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/richdrich/blockchain_ops_rust"
[lib]
name = "blockchain_ops"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[lints.clippy]
assertions_on_constants = "allow"
bool_assert_comparison = "allow"
clone_on_copy = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
default_constructed_unit_structs = "allow"
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"
duplicate_mod = "allow"
empty_line_after_doc_comments = "allow"
empty_line_after_outer_attr = "allow"
expect_fun_call = "allow"
explicit_auto_deref = "allow"
field_reassign_with_default = "allow"
filter_next = "allow"
if_same_then_else = "allow"
items_after_test_module = "allow"
legacy_numeric_constants = "allow"
len_without_is_empty = "allow"
len_zero = "allow"
let_unit_value = "allow"
manual_contains = "allow"
manual_range_contains = "allow"
manual_repeat_n = "allow"
manual_unwrap_or = "allow"
manual_unwrap_or_default = "allow"
match_like_matches_macro = "allow"
needless_borrow = "allow"
needless_range_loop = "allow"
needless_return = "allow"
new_without_default = "allow"
result_large_err = "allow"
same_item_push = "allow"
single_match = "allow"
to_string_in_format_args = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unnecessary_get_then_check = "allow"
unnecessary_map_or = "allow"
unnecessary_to_owned = "allow"
unusual_byte_groupings = "allow"
useless_conversion = "allow"
useless_vec = "allow"