claude 0.4.0

A little library to represent money.
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"
name = "claude"
version = "0.4.0"
authors = [
    "hendrik@hoodie.de",
    "tberry@student.neumont.edu",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A little library to represent money."
readme = "README.md"
keywords = [
    "Currency",
    "Money",
    "Monet",
]
license = "MPL-2.0"
repository = "https://github.com/hoodie/claude-rs"

[features]
default = []
parsing = ["regex"]
serialization = [
    "serde",
    "serde_json",
    "serde_derive",
]

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

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

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

[[example]]
name = "serialize"
path = "examples/serialize.rs"
required-features = ["serialization"]

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

[dependencies.regex]
version = "1"
optional = true

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

[dependencies.serde_derive]
version = "1"
optional = true

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