rust_finprim 0.5.1

Various finance and accounting calculations/formulas implemented Rust
# 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 = "2021"
rust-version = "1.78.0"
name = "rust_finprim"
version = "0.5.1"
authors = ["Dane Skalski (daneski13)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Various finance and accounting calculations/formulas implemented Rust"
documentation = "https://daneski13.github.io/rust-finprim/rust_finprim/index.html"
readme = "README.md"
keywords = [
    "finance",
    "math",
    "accounting",
    "excel",
    "no_std",
]
categories = [
    "finance",
    "mathematics",
    "no-std",
]
license = "MIT"
repository = "https://github.com/daneski13/rust-finprim"

[package.metadata.docs.rs]
rustdoc-args = [
    "--html-in-header",
    "./docs-header.html",
]

[badges.maintenance]
status = "passively-maintained"

[features]
default = ["std"]
no_std = ["dep:libm"]
rust_decimal = [
    "dep:rust_decimal",
    "dep:rust_decimal_macros",
]
serde = [
    "dep:serde",
    "rust_decimal?/serde",
]
std = [
    "rust_decimal?/std",
    "serde?/std",
]

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

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

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

[dependencies.crabtime]
version = "1.1.3"
default-features = false

[dependencies.libm]
version = "0.2"
optional = true

[dependencies.rust_decimal]
version = "1.37"
features = ["maths"]
optional = true
default-features = false

[dependencies.rust_decimal_macros]
version = "1.37"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.7"

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