[package]
edition = "2021"
name = "archx"
version = "3.0.1"
authors = ["AkramStation"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance CPU/GPU adaptive optimization library with SIMD and Multithreading"
documentation = "https://docs.rs/archx"
readme = "README.md"
keywords = [
"simd",
"optimization",
"gpu",
"multithreading",
"adaptive",
]
categories = [
"concurrency",
"development-tools::profiling",
"hardware-support",
]
license = "MIT"
repository = "https://github.com/Codevora-Studio/ArchX"
[lib]
name = "archx"
crate-type = ["lib"]
path = "src/lib.rs"
[[example]]
name = "v3_fluent_api_demo"
path = "examples/v3_fluent_api_demo.rs"
[[example]]
name = "v3_sovereign_gpu_demo"
path = "examples/v3_sovereign_gpu_demo.rs"
[[test]]
name = "adaptive_engine"
path = "tests/adaptive_engine.rs"
[[test]]
name = "benchmark"
path = "tests/benchmark.rs"
[[test]]
name = "consistency"
path = "tests/consistency.rs"
[[test]]
name = "cpu_detection"
path = "tests/cpu_detection.rs"
[[test]]
name = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "extreme_stress"
path = "tests/extreme_stress.rs"
[[test]]
name = "full_verification"
path = "tests/full_verification.rs"
[[test]]
name = "parallel_consistency"
path = "tests/parallel_consistency.rs"
[[test]]
name = "production_suite"
path = "tests/production_suite.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "stress_tests"
path = "tests/stress_tests.rs"
[dependencies.rayon]
version = "1.11.0"
[dependencies.safe_arch]
version = "1.0.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sysinfo]
version = "0.38.0"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]