primeutils 0.1.0

A collection of tools for working with prime numbers.
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 = "2021"
name = "primeutils"
version = "0.1.0"
authors = ["Vidi <125580894+Vidi0@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of tools for working with prime numbers."
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/Vidi0/primeutils"

[features]
default = ["get_cpu_info"]
get_cpu_info = [
    "dep:num_cpus",
    "dep:raw-cpuid",
]

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

[[bin]]
name = "primeutils"
path = "src/main.rs"

[dependencies.num_cpus]
version = "1.16.0"
optional = true

[dependencies.raw-cpuid]
version = "11.2.0"
optional = true