rusqsieve 0.3.0

High-performance SIQS integer factorization for native Rust and WebAssembly
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 = "rusqsieve"
version = "0.3.0"
authors = ["metastable-void"]
build = false
include = [
    "/src/**",
    "/tests/**",
    "/web/**",
    "/tools/**",
    "/release/**",
    "/Cargo.lock",
    "/README.md",
    "/CHANGELOG.md",
    "/BENCHMARKING.md",
    "/SPEC.md",
    "/LICENSE-APACHE",
    "/LICENSE-MPL",
    "/Makefile",
    "/build-release.sh",
    "/rusqsieve.h",
    "/rusqsieve.pc.in",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance SIQS integer factorization for native Rust and WebAssembly"
homepage = "https://github.com/metastable-void/rusqsieve"
documentation = "https://docs.rs/rusqsieve"
readme = "README.md"
keywords = [
    "factorization",
    "quadratic-sieve",
    "number-theory",
    "wasm",
    "rsa",
]
categories = [
    "algorithms",
    "mathematics",
    "command-line-utilities",
    "wasm",
]
license = "Apache-2.0 OR MPL-2.0"
repository = "https://github.com/metastable-void/rusqsieve"

[features]
cli = []
default = ["cli"]
fuzzing = []
wasm-simd128 = []

[lib]
name = "rusqsieve"
crate-type = [
    "rlib",
    "cdylib",
    "staticlib",
]
path = "src/lib.rs"

[[bin]]
name = "qs-factor"
path = "src/bin/qs-factor.rs"
required-features = ["cli"]

[[test]]
name = "cli"
path = "tests/cli.rs"
required-features = ["cli"]

[[test]]
name = "factorization"
path = "tests/factorization.rs"

[dev-dependencies.num-bigint]
version = "0.5.1"

[profile.bench]
opt-level = 3
lto = "thin"
codegen-units = 1

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "unwind"
strip = true

[profile.release-test]
lto = "thin"
codegen-units = 16
panic = "unwind"
inherits = "release"
strip = false