[package]
edition = "2024"
rust-version = "1.93.0"
name = "deep_causality_algorithms"
version = "0.4.0"
authors = ["Marvin Hansen <marvin.hansen@gmail.com>"]
build = false
exclude = [
"*.bazel",
"*/*.bazel",
"*.bazel.*",
"BUILD",
"BUILD.bazel",
"MODULE.bazel",
".bazelignore",
".bazelrc",
"tests/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Computational causality algorithms and utils used in the DeepCausality project."
homepage = "https://deepcausality.com/"
documentation = "https://docs.rs/deep_causality"
readme = "README.md"
keywords = [
"surd",
"causal-graph",
"causal-reasoning",
"algorithms",
]
categories = [
"algorithms",
"science",
"aerospace",
"finance",
"mathematics",
]
license = "MIT"
repository = "https://github.com/deepcausality/deep_causality.rs"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
parallel = [
"dep:rayon",
"deep_causality_par/parallel",
]
[lib]
name = "deep_causality_algorithms"
path = "src/lib.rs"
[[example]]
name = "brcd_eval_accuracy_compute"
path = "verification/brcd/brcd_eval_accuracy_compute.rs"
[[example]]
name = "verification_base"
path = "verification/brcd/verification_base.rs"
[[example]]
name = "verification_boss"
path = "verification/brcd/verification_boss.rs"
[[example]]
name = "verification_boss_online_boutique"
path = "verification/brcd/verification_boss_online_boutique.rs"
[[example]]
name = "verification_boss_sockshop"
path = "verification/brcd/verification_boss_sockshop.rs"
[[example]]
name = "verification_online_boutique"
path = "verification/brcd/verification_online_boutique.rs"
[[example]]
name = "verification_sockshop"
path = "verification/brcd/verification_sockshop.rs"
[[bench]]
name = "brcd_benchmark"
path = "benches/brcd_benchmark.rs"
harness = false
[[bench]]
name = "brcd_benchmark_wide"
path = "benches/brcd_benchmark_wide.rs"
harness = false
[[bench]]
name = "mrmr_benchmark"
path = "benches/mrmr_benchmark.rs"
harness = false
[dependencies.deep_causality_algebra]
version = "0.1"
[dependencies.deep_causality_num]
version = "0.4"
[dependencies.deep_causality_par]
version = "0.1"
[dependencies.deep_causality_rand]
version = "0.2"
[dependencies.deep_causality_tensor]
version = "0.5"
[dependencies.deep_causality_topology]
version = "0.7"
[dependencies.rayon]
version = "1.12"
optional = true
[dev-dependencies.criterion]
version = "0.8"
[lints.rust]
unsafe_code = "forbid"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]