[package]
edition = "2021"
name = "within"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fixed-effects normal equation solver with Schwarz preconditioning"
readme = "README.md"
keywords = [
"fixed-effects",
"least-squares",
"preconditioner",
"schwarz",
"econometrics",
]
categories = [
"mathematics",
"science",
"algorithms",
]
license = "MIT"
repository = "https://github.com/py-econometrics/within"
[lib]
name = "within"
path = "src/lib.rs"
[[example]]
name = "memory_profile"
path = "examples/memory_profile.rs"
[[example]]
name = "preconditioned_solve"
path = "examples/preconditioned_solve.rs"
[[example]]
name = "solve_demo"
path = "examples/solve_demo.rs"
[[test]]
name = "array_store"
path = "tests/array_store.rs"
[[test]]
name = "domain"
path = "tests/domain.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "error_paths"
path = "tests/error_paths.rs"
[[test]]
name = "gramian"
path = "tests/gramian.rs"
[[test]]
name = "iterative_refinement"
path = "tests/iterative_refinement.rs"
[[test]]
name = "local_solver_properties"
path = "tests/local_solver_properties.rs"
[[test]]
name = "orchestrate_high_level"
path = "tests/orchestrate_high_level.rs"
[[test]]
name = "orchestrate_solve"
path = "tests/orchestrate_solve.rs"
[[test]]
name = "preconditioner_coverage"
path = "tests/preconditioner_coverage.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "property_gaps"
path = "tests/property_gaps.rs"
[[test]]
name = "solver"
path = "tests/solver.rs"
[[bench]]
name = "fixest"
path = "benches/fixest.rs"
harness = false
[[bench]]
name = "store_backend"
path = "benches/store_backend.rs"
harness = false
[dependencies.approx-chol]
version = "0.1.0"
features = ["serde"]
[dependencies.faer]
version = "0.24.0"
[dependencies.ndarray]
version = "0.16"
[dependencies.portable-atomic]
version = "1"
features = ["float"]
[dependencies.postcard]
version = "1"
features = ["use-std"]
[dependencies.rayon]
version = "1.10"
[dependencies.schwarz-precond]
version = "0.1.0"
features = ["serde"]
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rand]
version = "0.9"
features = ["small_rng"]