# 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 = "2021" name = "fibext" version = "0.2.1" authors = ["cainthebest"] description = "A versatile Fibonacci sequence generator for Rust, with support for large numbers and optional iterator interface." documentation = "https://docs.rs/fibext" readme = "README.md" keywords = [ "Fibonacci", "Science", "Mathematics", "Sequence", "Numbers", ] categories = [ "mathematics", "no-std", ] license = "GPL-3.0" repository = "https://github.com/cainthebest/fibext" [profile.release] opt-level = 2 lto = true debug = 0 panic = "abort" overflow-checks = true [[bench]] name = "fibonacci" harness = false [dependencies.num-bigint] version = "0.4" optional = true [dev-dependencies.criterion] version = "0.3" [features] checked-overflow = [] default = [ "std", "checked-overflow", "iterator", ] iterator = [] large-numbers = ["dep:num-bigint"] std = []