easydoc-core 0.1.0

Core types and extension points for easydoc-rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "easydoc-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and extension points for easydoc-rust"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/easy-4-rust/easydoc-rust"

[features]
default = []
serde = [
    "dep:serde",
    "dep:serde_json",
    "dep:base64",
]

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

[[test]]
name = "column_style_tests"
path = "tests/column_style_tests.rs"

[[test]]
name = "core_logic_tests"
path = "tests/core_logic_tests.rs"

[[test]]
name = "semantic_model_tests"
path = "tests/semantic_model_tests.rs"

[[test]]
name = "types_tests"
path = "tests/types_tests.rs"

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.chrono]
version = "0.4.45"
features = ["std"]
default-features = false

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

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

[dependencies.thiserror]
version = "2.0.18"

[dependencies.zip]
version = "8.6.0"
features = ["deflate"]
default-features = false

[dev-dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0.150"

[dev-dependencies.tempfile]
version = "3.27.0"

[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
no_effect_underscore_binding = "allow"
too_many_lines = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
wrong_self_convention = "allow"

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

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

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"