[package]
edition = "2021"
rust-version = "1.85.0"
name = "esoc-chart"
version = "0.1.0"
authors = ["esoc"]
build = false
exclude = ["AUDIT*.md"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-level charting API built on esoc-gfx — matplotlib-equivalent for Rust"
documentation = "https://docs.rs/esoc-chart"
readme = "README.md"
keywords = [
"chart",
"plot",
"visualization",
"matplotlib",
"svg",
]
categories = [
"graphics",
"visualization",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Slush97/esolearn"
[features]
default = []
png = ["esoc-gfx/png"]
scry-learn = ["dep:scry-learn"]
[lib]
name = "esoc_chart"
path = "src/lib.rs"
[[example]]
name = "audit_edge_cases"
path = "examples/audit_edge_cases.rs"
[[example]]
name = "basic_bar"
path = "examples/basic_bar.rs"
[[example]]
name = "basic_line"
path = "examples/basic_line.rs"
[[example]]
name = "basic_scatter"
path = "examples/basic_scatter.rs"
[[example]]
name = "basic_treemap"
path = "examples/basic_treemap.rs"
[[example]]
name = "chart_review"
path = "examples/chart_review.rs"
[[example]]
name = "feature_histograms"
path = "examples/feature_histograms.rs"
required-features = ["scry-learn"]
[[example]]
name = "gallery"
path = "examples/gallery.rs"
[[example]]
name = "logistic_roc"
path = "examples/logistic_roc.rs"
required-features = ["scry-learn"]
[[example]]
name = "model_comparison"
path = "examples/model_comparison.rs"
required-features = ["scry-learn"]
[[example]]
name = "p1_showcase"
path = "examples/p1_showcase.rs"
[[example]]
name = "readme_charts"
path = "examples/readme_charts.rs"
[[example]]
name = "scatter_categories"
path = "examples/scatter_categories.rs"
[[example]]
name = "scatter_clusters"
path = "examples/scatter_clusters.rs"
required-features = ["scry-learn"]
[[example]]
name = "stress_test"
path = "examples/stress_test.rs"
[[example]]
name = "training_curves"
path = "examples/training_curves.rs"
[dependencies.esoc-color]
version = "0.1.0"
[dependencies.esoc-gfx]
version = "0.1.0"
[dependencies.esoc-scene]
version = "0.1.0"
[dependencies.scry-learn]
version = "0.1"
optional = true
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
many_single_char_names = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
redundant_closure_for_method_calls = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
suboptimal_flops = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
unnecessary_wraps = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "allow"
unsafe_code = "deny"