[dependencies.proptest]
default-features = false
features = ["std"]
optional = true
version = "< 1.7"
[dependencies.rustversion]
default-features = false
version = "1.0"
[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
version = "1.0.228"
[dev-dependencies.serde_json]
version = "1.0.140"
[features]
arbitrary = ["dep:proptest"]
default = []
serde = ["dep:serde"]
singleton = []
[lib]
name = "intrval"
path = "src/lib.rs"
[lints.clippy]
absolute_paths = "warn"
as_conversions = "warn"
assertions_on_result_states = "warn"
dbg_macro = "warn"
else_if_without_else = "warn"
mem_forget = "deny"
missing_docs_in_private_items = "warn"
renamed_function_params = "warn"
return_and_then = "warn"
semicolon_outside_block = "warn"
unwrap_used = "warn"
[lints.clippy.cargo]
level = "warn"
priority = -5
[lints.clippy.complexity]
level = "warn"
priority = -3
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -5
[lints.clippy.pedantic]
level = "warn"
priority = -4
[lints.clippy.perf]
level = "warn"
priority = -3
[lints.clippy.style]
level = "warn"
priority = -4
[lints.clippy.suspicious]
level = "deny"
priority = -2
[lints.rust]
absolute_paths_not_starting_with_crate = "warn"
ambiguous_negative_literals = "warn"
closure_returning_async_block = "warn"
deprecated_in_future = "warn"
deprecated_safe_2024 = "warn"
deref_into_dyn_supertrait = "warn"
edition_2024_expr_fragment_specifier = "allow"
elided_lifetimes_in_paths = "warn"
explicit_outlives_requirements = "warn"
ffi_unwind_calls = "warn"
fuzzy_provenance_casts = "warn"
if_let_rescope = "warn"
impl_trait_overcaptures = "warn"
impl_trait_redundant_captures = "warn"
keyword_idents_2018 = "warn"
keyword_idents_2024 = "warn"
let_underscore_drop = "warn"
linker_messages = "warn"
lossy_provenance_casts = "warn"
macro_use_extern_crate = "warn"
meta_variable_misuse = "warn"
missing_abi = "warn"
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
missing_unsafe_on_extern = "warn"
multiple_supertrait_upcastable = "warn"
must_not_suspend = "warn"
non_ascii_idents = "warn"
non_exhaustive_omitted_patterns = "warn"
non_local_definitions = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
rust_2021_incompatible_closure_captures = "warn"
rust_2021_incompatible_or_patterns = "warn"
rust_2021_prefixes_incompatible_syntax = "warn"
rust_2021_prelude_collisions = "warn"
rust_2024_guarded_string_incompatible_syntax = "warn"
rust_2024_incompatible_pat = "warn"
rust_2024_prelude_collisions = "warn"
single_use_lifetimes = "warn"
supertrait_item_shadowing_definition = "warn"
supertrait_item_shadowing_usage = "warn"
tail_expr_drop_order = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unit_bindings = "warn"
unknown_lints = "allow"
unnameable_types = "warn"
unreachable_pub = "allow"
unsafe_attr_outside_unsafe = "warn"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "warn"
unstable_features = "warn"
unused_crate_dependencies = "allow"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_qualifications = "warn"
unused_results = "warn"
variant_size_differences = "warn"
[package]
authors = []
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "data-structures"]
description = "Generic intervals (ranges) library"
edition = "2021"
exclude = [".gitignore", ".github/", ".cargo/", ".clippy.toml", "examples/", "proptest-regressions/"]
keywords = ["interval", "bounds", "math", "no-std"]
license = "MIT OR Apache-2.0"
name = "intrval"
readme = "README.md"
repository = "https://github.com/tsionyx/intrval"
rust-version = "1.69"
version = "0.1.1"