computable 0.1.0

Computable real numbers with guaranteed correctness via interval refinement
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "computable"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Computable real numbers with guaranteed correctness via interval refinement"
readme = "README.md"
keywords = [
    "computable",
    "exact-arithmetic",
    "interval",
    "real-numbers",
]
categories = [
    "mathematics",
    "science",
]
license = "MIT"
repository = "https://github.com/evgunter/computable"

[lib]
name = "computable"
path = "src/lib.rs"

[[example]]
name = "analysis"
path = "examples/analysis.rs"

[[bench]]
name = "asymmetric_convergence"
path = "benches/asymmetric_convergence.rs"
harness = false

[[bench]]
name = "complex"
path = "benches/complex.rs"
harness = false

[[bench]]
name = "integer_roots"
path = "benches/integer_roots.rs"
harness = false

[[bench]]
name = "inv"
path = "benches/inv.rs"
harness = false

[[bench]]
name = "pi"
path = "benches/pi.rs"
harness = false

[[bench]]
name = "sin"
path = "benches/sin.rs"
harness = false

[[bench]]
name = "summation"
path = "benches/summation.rs"
harness = false

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.num-bigint]
version = "0.4"

[dependencies.num-integer]
version = "0.1"

[dependencies.num-traits]
version = "0.2"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rand]
version = "0.8"

[dev-dependencies.criterion]
version = "0.5"

[lints.clippy]
arithmetic_side_effects = "warn"
as_conversions = "warn"
dbg_macro = "warn"
default_numeric_fallback = "warn"
enum_glob_use = "deny"
field_scoped_visibility_modifiers = "warn"
impl_trait_in_params = "warn"
let_underscore_must_use = "warn"
lossy_float_literal = "warn"
map_err_ignore = "warn"
missing_asserts_for_indexing = "warn"
missing_transmute_annotations = "deny"
print_stderr = "warn"
shadow_reuse = "warn"
shadow_same = "warn"
shadow_unrelated = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
wildcard_enum_match_arm = "warn"

[lints.rust]
let_underscore_drop = "deny"