sklears-compose 0.1.0-beta.1

Composite estimators and transformers
Documentation
[[bench]]
name = "composition_benchmarks"
path = "benches/composition_benchmarks.rs"

[[bench]]
name = "ensemble_benchmarks"
path = "benches/ensemble_benchmarks.rs"

[[bench]]
name = "feature_transformation_benchmarks"
path = "benches/feature_transformation_benchmarks.rs"

[[bench]]
harness = false
name = "simd_benchmarks"
path = "benches/simd_benchmarks.rs"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.futures]
version = "0.3"

[dependencies.num_cpus]
version = "1.17"

[dependencies.scirs2-core]
default-features = false
features = ["random", "linalg"]
version = "0.1.1"

[dependencies.scirs2-optimize]
default-features = false
version = "0.1.1"

[dependencies.serde]
features = ["derive", "derive"]
optional = true
version = "1.0"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.serde_yaml]
optional = true
version = "0.9"

[dependencies.sklears-core]
version = "0.1.0-beta.1"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["full"]
version = "1.47"

[dependencies.uuid]
features = ["v4"]
version = "1.19"

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

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

[dev-dependencies.proptest]
version = "1.7"

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

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

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

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

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

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

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

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

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

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

[features]
default = ["workflow"]
serde = ["dep:serde", "sklears-core/serde"]
workflow = ["serde", "dep:serde_json", "dep:serde_yaml"]

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

[lints.clippy]
ambiguous_glob_reexports = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
deref_addrof = "allow"
eq_op = "allow"
excessive_precision = "allow"
ifs_same_cond = "allow"
incompatible_msrv = "allow"
large_enum_variant = "warn"
large_stack_arrays = "warn"
manual_clamp = "allow"
manual_slice_size_calculation = "allow"
match_like_matches_macro = "allow"
missing_docs_in_private_items = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "allow"
mixed_attributes_style = "allow"
module_name_repetitions = "allow"
needless_range_loop = "allow"
nonminimal_bool = "allow"
not_unsafe_ptr_arg_deref = "allow"
similar_names = "allow"
too_many_arguments = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.rust]
dead_code = "warn"
missing_docs = "warn"
non_camel_case_types = "allow"
non_snake_case = "allow"
unused_imports = "warn"
unused_variables = "warn"

[package]
authors = ["COOLJAPAN OU (Team KitaSan)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "mathematics"]
description = "Composite estimators and transformers"
edition = "2021"
homepage = "https://github.com/cool-japan/sklears"
keywords = ["machine-learning", "pipeline", "column-transformer"]
license = "MIT OR Apache-2.0"
name = "sklears-compose"
readme = "README.md"
repository = "https://github.com/cool-japan/sklears"
rust-version = "1.70"
version = "0.1.0-beta.1"