[dependencies.anchored-pool]
default-features = false
optional = true
version = "0.2.0"
[dependencies.clone-behavior]
default-features = false
optional = true
version = "0.1.0"
[dependencies.generic-container]
default-features = false
optional = true
version = "0.2.2"
[dependencies.lender]
default-features = false
optional = true
version = "0.4.0"
[dependencies.lending-iterator]
default-features = false
optional = true
version = "0.1.7"
[features]
alloc = ["generic-container/alloc", "generic-container/kinds"]
anchored-pool = ["dep:anchored-pool", "std"]
anchored-pool-default = ["anchored-pool", "anchored-pool/default"]
default = ["clone-behavior", "generic-container"]
std = ["alloc", "generic-container/std"]
[lib]
name = "seekable_iterator"
path = "src/lib.rs"
[lints.clippy]
allow_attributes = "allow"
arbitrary_source_item_ordering = "allow"
arithmetic_side_effects = "allow"
blanket_clippy_restriction_lints = "allow"
error_impl_error = "allow"
exhaustive_enums = "allow"
exhaustive_structs = "allow"
from_str_radix_10 = "allow"
if_then_some_else_none = "allow"
implicit_return = "allow"
integer_division_remainder_used = "allow"
let_with_type_underscore = "allow"
manual_range_contains = "allow"
map_unwrap_or = "allow"
missing_docs_in_private_items = "allow"
missing_inline_in_public_items = "allow"
missing_trait_methods = "allow"
mod_module_files = "allow"
multiple_inherent_impl = "allow"
option_if_let_else = "allow"
pattern_type_mismatch = "allow"
pub_use = "allow"
pub_with_shorthand = "allow"
question_mark_used = "allow"
redundant_else = "allow"
separated_literal_suffix = "allow"
shadow_reuse = "allow"
shadow_same = "allow"
significant_drop_tightening = "allow"
single_call_fn = "allow"
single_char_lifetime_names = "allow"
unwrap_in_result = "allow"
unwrap_or_default = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
ambiguous_negative_literals = "warn"
closure_returning_async_block = "warn"
deref_into_dyn_supertrait = "warn"
elided_lifetimes_in_paths = "warn"
explicit_outlives_requirements = "warn"
ffi_unwind_calls = "warn"
impl_trait_redundant_captures = "warn"
let_underscore_drop = "warn"
macro_use_extern_crate = "warn"
meta_variable_misuse = "warn"
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
non_ascii_idents = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
rust_2024_incompatible_pat = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unit_bindings = "warn"
unnameable_types = "warn"
unreachable_pub = "warn"
unsafe_code = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_crate_dependencies = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.keyword-idents]
level = "warn"
priority = -1
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rustdoc.all]
level = "warn"
priority = -1
[package]
authors = ["Finley Huggins"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rust-patterns", "no-std", "no-std::no-alloc"]
description = "Traits for iterators and lending iterators with seeking capabilities"
edition = "2024"
include = ["Cargo.toml", "src/**/*.rs", "LICENSE-APACHE", "LICENSE-MIT", "README.md"]
keywords = ["seek", "iter", "cursor", "lending", "pool"]
license = "MIT OR Apache-2.0"
name = "seekable-iterator"
readme = "README.md"
repository = "https://github.com/robofinch/seekable-iterator"
rust-version = "1.85"
version = "0.4.0"
[package.metadata.docs.rs]
all-features = true