[package]
edition = "2021"
name = "archx"
version = "2.0.0"
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 = "async_cli_full_example"
path = "examples/async_cli_full_example.rs"
[[example]]
name = "basic_bench"
path = "examples/basic_bench.rs"
[[example]]
name = "benchmark_suite"
path = "examples/benchmark_suite.rs"
[[example]]
name = "production_ready_demo"
path = "examples/production_ready_demo.rs"
[[example]]
name = "professional_fluent_api"
path = "examples/professional_fluent_api.rs"
[[example]]
name = "smart_rust_cli"
path = "examples/smart_rust_cli.rs"
[[example]]
name = "smart_tauri_app"
path = "examples/smart_tauri_app.rs"
[[example]]
name = "smart_wasm"
path = "examples/smart_wasm.rs"
[[example]]
name = "tauri_async_example"
path = "examples/tauri_async_example.rs"
[[example]]
name = "tauri_example"
path = "examples/tauri_example.rs"
[[example]]
name = "tauri_full_example"
path = "examples/tauri_full_example.rs"
[[example]]
name = "v2_sovereign_demo"
path = "examples/v2_sovereign_demo.rs"
[[example]]
name = "v2_wasm_bench"
path = "examples/v2_wasm_bench.rs"
[[example]]
name = "wasm_full_example"
path = "examples/wasm_full_example.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.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]