coinbasis 0.2.0

Comprehensive crypto tax-lot cost-basis accounting (FIFO/LIFO/HIFO/Average/Specific-ID), per-wallet, with capital-gains and income reporting.
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 = "2021"
rust-version = "1.74"
name = "coinbasis"
version = "0.2.0"
build = false
include = [
    "src/**/*.rs",
    "examples/**/*.rs",
    "README.md",
    "LICENSE-MIT",
    "LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Comprehensive crypto tax-lot cost-basis accounting (FIFO/LIFO/HIFO/Average/Specific-ID), per-wallet, with capital-gains and income reporting."
readme = "README.md"
keywords = [
    "crypto",
    "tax",
    "cost-basis",
    "portfolio",
    "accounting",
]
categories = ["finance"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Technical-1/coinbasis"

[package.metadata.docs.rs]
all-features = true

[features]
default = []
serde = [
    "dep:serde",
    "rust_decimal/serde",
    "chrono/serde",
]

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

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "std",
]
default-features = false

[dependencies.rust_decimal]
version = "1"

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

[dependencies.thiserror]
version = "1"

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

[dev-dependencies.rust_decimal_macros]
version = "1"

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