advanced-algorithms 0.1.4

A comprehensive library of advanced algorithms for numerical analysis, linear algebra, cryptography, optimization, and graph theory
Documentation
[[bench]]
harness = false
name = "algorithm_benchmarks"
path = "benches/algorithm_benchmarks.rs"

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

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.8"

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

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

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

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

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

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

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

[package]
authors = ["Your Name <your.email@example.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "mathematics", "science"]
description = "A comprehensive library of advanced algorithms for numerical analysis, linear algebra, cryptography, optimization, and graph theory"
documentation = "https://docs.rs/advanced-algorithms"
edition = "2021"
exclude = [".github/*", "benchmarks/*", "examples/large_data/*", "*.tmp", "PUBLISHING.md", "PROJECT_SUMMARY.md"]
homepage = "https://github.com/yourusername/advanced-algorithms"
keywords = ["algorithms", "numerical", "optimization", "cryptography", "linear-algebra"]
license = "MIT OR Apache-2.0"
name = "advanced-algorithms"
readme = "README.md"
repository = "https://github.com/yourusername/advanced-algorithms"
version = "0.1.4"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3